#00AF33
Bark Different.
102833
0
1
Feb 12, 2023 16:57:46 GMT -8
RedBassett
I'm a Marxist/Lennonist of the Groucho/John variety.
15,405
April 2007
applecomputer
RedBassett's Mini-Profile
|
Post by RedBassett on Dec 28, 2009 9:56:45 GMT -8
This is a rather simple code, it was written for someone in support, but it might make a nice feature for others.
I do not think this is cross-browser (I think IE uses a different system for editing CSS properties), but I would like someone to test it if they have the time.
<script type="text/javascript"> /* Highlight Delete Profile Button */ var inTags = document.getElementsByTagName("input"); for (var i = 0; i < inTags.length; i++) { var put = inTags[i]; if (put.value == "Delete Account") { put.style.backgroundColor = "red"; } } </script>
|
|