Reputation: 1554
I have a form with two submits buttons, one called 'display' and the other called 'disenrol'. The display submit doesn't need confirmation whereas the other does. Originally I was going to use
onsubmit="return confirm('Are you sure you want to remove the modules?');"
But of course that won't work because it reacts to both of the submits. Is there a way I can specify which submit it should worth with? (I'm quite new to javascript so please be gentle with me)
Thanks
Upvotes: 3
Views: 1931
Reputation: 26930
Try this:
<input type="submit" onclick="return confirm('Are you sure you want to remove the modules?');" value="submit1" />
Upvotes: 7