Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Since IE (<8?) does not let me change the text color of a disabled button, and introduces a horrible shadow (embossed effect), I want to mimic the behaviour of being a disabled button. This button will be disabled if there are input errors on the form.

Instead of disabling I can change the class in JS to darken the button etc when form validation takes place. What I also want to do is make it unclickable as well so that the user can not submit the form. (How) can I do this?

Thanks

share|improve this question

3 Answers

<form onSubmit="return validate(this)"

Just return false to stop submission

you can add the function in the window.onload too:

window.onload=function() {
  document.getElementsByTagName("form")[0]).onsubmit=function() {
    return validate(this);
  }
}
function validate(theForm) {
  // if not valid
  return false;

  // else
  return true;
}

If you want to adhere to the newest best practices, you will use addEventListener or attachEvent or jQuery bind

share|improve this answer
did some editing to clarify the point, feel free to rollback if this is not what you intended – Pablo Fernandez Aug 1 '11 at 14:33
It was not. But thanks – mplungjan Aug 1 '11 at 14:51
2  
Downvoting without comments is so unprofessional – mplungjan Aug 2 '11 at 17:13

Nothing is out of bounds in solving this. First of all re-enable your button, then using Jquery, addClass that you want to (you can also remove the old class too) then re-disable the button:

$("#yourbuttonid").click(function(){
    $(this).removeAttr("disabled").removeClass("classname").addClass("classname2").attr("disabled", "disabled");
});
share|improve this answer

You need to return false from the onclick event:

<input type="submit" value="Submit" onclick="return test();" />

or

<input type="submit" value="Submit" onclick="return false;" />

NOTE: you must use return in the onclick.

share|improve this answer
NEVER use onclick of submit when you have onsubmit of the form!!! Also if the button is not enabled, it does not click – mplungjan Aug 1 '11 at 15:30
@mplungjan - ridiculous - there is nothing wrong with using onclick here, further Andrew's question states "I want to mimic the behaviour of being a disabled button." which this does perfectly. – Barry Kaye Aug 1 '11 at 15:46
not ridiculous at all. Trust me. – mplungjan Aug 1 '11 at 17:55
@mplungjan - no - you made a comment in CAPS - substantiate it or retract it. – Barry Kaye Aug 1 '11 at 18:34
So you will not take my word for it, me having coded JS since NS2.x and IE3.02 and now have to find real world examples? Hmm, may take some time since it is not simple to search for onsubmit versus onclick. Here is one (apart from another one of mine from SO) bytes.com/topic/javascript/answers/… – mplungjan Aug 1 '11 at 20:36
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.