When i click the submit button Popup to be displayed
1. Submit code as follows
2. Display popup using Jquery code as follows
$(function () {
});
$("#btn_PDC").click(function() {
$('#divMessage').show();
});
3. in run mode when i click submit button Popup is not displayed.
From my above code what is the mistake.
Midhun TpPosted Oct 18, 2016, 9:21 AM
$(function(){
//put your button click script here
});