vote up 0 vote down star

Hi, I'm trying to create a basic confirmation box which prompts users with a simple confirm/cancel when they click on a link.

This is working fine in FF and IE, however Chrome just seems to ignore it.

Can anyone see why this might not be working?

//Confirm Duplication        
$("a[href*=duplicate]").click(function(event){         
   var answer = confirm("Duplicate?")     
   if(!answer){
      event.preventDefault();    
   }
 });

Any advice appreciated. Thanks.

flag

79% accept rate

1 Answer

Your Answer

Get an OpenID
or

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