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>