Hi,
I'm having asp.net radio button and asp.net panel..if i click the radio button, the div automatically scrolls to asp.net panel (bottom of the div)
Any js or jquery for name tag using for asp.net controls..
i need the exact thing from the below link for my asp control..
http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_a_name
i tried the html name tag but it is not working..
Anil KumarPosted Oct 30, 2012, 1:03 AM
ganesh maddyPosted Oct 29, 2012, 1:04 AM
i have my following code for your reference..
test
if i click the radio button the scroller scrolls to the panel / div , it's in bottom of the page
i want this to scrolls to bottom ...
Anil KumarPosted Oct 28, 2012, 8:35 AM
$("input[name=rbSelector]").change(function() {
window.scrollTo(0, $("#" + $(this).attr("value") + "").offset().top);
});?