narasiman rao

narasiman rao

  • NA
  • 519
  • 745.6k

using Jquery Popup to be shown using submit click

Oct 18 2016 9:03 AM
  When i click the submit button Popup to be displayed
 

1.  Submit code as follows
 
 <input type="button" id="btn_PDC" runat="server"  class="blueBtn" value="SUBMIT">

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.


Answers (1)