Posts: 40
Name: Bob Davis
Location: Los Angeles, CA
|
Hey fantastic. Thanks for the help.
Yeah, rollover based on the user. We have several portals where clients log in and we intend to customize certain elements on the page, one being the submit button on our form.
Okay, so my id="SubmitFormBut".
And I put the javascript in the head like so:
<script type="text/javascript">
function()
var button = document.getElementById('SubmitFormBut');
var buttonSrc = button.src;
</script>
The body tag would be:
<input type="image" name="SubmitFormBut" id="SubmitFormBut" src="img/button.gif" alt="Submit Form" height="22" width="91">
And what happens if they have their browser's javascript turned off?
|