Hi i want to move to the page number as we enter page number in textbox.
Give the DIV similar names like
dv1, dv2, dv3 ...
Then use the following event
$("#txtNo").live("onchange", function(){ $("[id$=dv]").hide(); $("#dv" + $(this).val()).show(); });
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.