Radicore Forum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » RADICORE » RADICORE Suggestions » Disable (or colorize) buttons while pages load
Re: Disable (or colorize) buttons while pages load [message #1776 is a reply to message #1772] Wed, 29 October 2008 16:35 Go to previous message
ikatz is currently offline  ikatz
Messages: 40
Registered: December 2007
Location: Durham, NH
Member
In case anyone is interested, here is the code to make it work:

style_custom.css
input.submit {
    background-color:white;
}


footer.txt
<script type="text/javascript">
var inputs = document.getElementsByTagName("input");

for (var i=0; i < inputs.length; i++)
    if (inputs[i].type == "submit")
        inputs[i].style.backgroundColor = "inherit";


</script>

 
Read Message
Read Message
Read Message
Previous Topic: google-style pagination (solution attached)
Next Topic: Auto numerate records in a list view
Goto Forum:
  


Current Time: Tue Jun 25 02:29:02 EDT 2024

Total time taken to generate the page: 0.00994 seconds