-1

I am trying to add click event on button But it is not working on IE9.

$('#proceed_btn').click(function(){ alert('test');
        handleWelcomePage();
        $('a.prev').show();
    });

above is JS code & below is button code.

<button id="proceed_btn" type="submit" data-theme="a">Proceed</button>
MAR
  • 385
  • 3
  • 6
  • 14

1 Answers1

1
$(function() {
   $('#proceed_btn').on("change", function(){ 
        alert('test');
        handleWelcomePage();
        $('a.prev').show();
    });
});

Try the code above

Techie
  • 44,706
  • 42
  • 157
  • 243