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