How to write the jquery in asp.net2.0, i click the button display confirm box based on requirements
- Confirm box change the buttons(yes,No) and images(warning,information etc) and Heading also
pls give me total code, which libraries added and how to write the function in asp.net2.0. -
alert box also displayed based on condition hange the images and heading.
- which libraries added and how to write the function
function:
$(“#confirm_button”).click( function() {jConfirm('Can you confirm this?', 'Confirmation Dialog', function(r) { jAlert('Confirmed: ' + r, 'Confirmation Results'); }); });i am click the button code like
**
> <input id="confirm_button" > type="button" value="Show Confirm" />
**
Pls help me
THNAK U
HEMANTH
You should take a look at the jquery UI dialog:
http://jqueryui.com/demos/dialog/
Hope this helps. Cheers