If I am using a submit button as so..
<input type="image" name="submit" src="image.png" disabled="disabled" />
Is there any way I can trigger a Javascript alert when someone clicks this button? I have tried using onclick() but it doesn't work unless I take away the disabled="disabled".
atag and then I can style them however I want (rather than using the disabled attribute I would just use a disabled class). I can handle the click with javascript and submit the form that way. It also means I get click event regardless of "disabled" or not