jaymc Posted August 4, 2008 Share Posted August 4, 2008 I want to run some javascript on my index page to monitor every submit button so that when its pressed it disables so a user can keep clicking it I know I can do this using an ONCLICK, but I dont want to add this to every submit button I want to put it in my master .js file to apply to any submit button on the page Quote Link to comment Share on other sites More sharing options...
vikramjeet.singla Posted August 4, 2008 Share Posted August 4, 2008 you can apply same css class to each submit and disable them using DOM.... Quote Link to comment Share on other sites More sharing options...
jaymc Posted August 4, 2008 Author Share Posted August 4, 2008 Can you provide an example? Quote Link to comment Share on other sites More sharing options...
JasonLewis Posted August 4, 2008 Share Posted August 4, 2008 You would still need to have this in a submit button: <input type="submit" name="submit" id="submit" onclick="javascript: disableSubmit(this);" /> Then have the appropriate javascript. But you would need to specify it in each one, as far as I know. Quote Link to comment Share on other sites More sharing options...
jaymc Posted August 4, 2008 Author Share Posted August 4, 2008 What about event handlers? Quote Link to comment Share on other sites More sharing options...
KevinM1 Posted August 4, 2008 Share Posted August 4, 2008 I want to run some javascript on my index page to monitor every submit button so that when its pressed it disables so a user can keep clicking it I know I can do this using an ONCLICK, but I dont want to add this to every submit button I want to put it in my master .js file to apply to any submit button on the page Well, like vikramkeet.singla said, you can filter out the submits by CSS class. It's easiest to use jQuery for this: $(".yourClassName").click(function() { //do whatever you want here }); So, give your submits a class to replace 'yourClassName' and fill out the body of the onclick callback function. That will attach that onclick callback to every element of that class. Quote Link to comment Share on other sites More sharing options...
jaymc Posted August 4, 2008 Author Share Posted August 4, 2008 Cheers Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.