I am using 3 radio buttons
<input type="radio" id="oui" class="btchoix" name="choix" value="oui" /
>
...
....
user clicks on radio button 1 called input#oui
jQuery('input#oui').click(function(){
jQuery('div#reponse1').show('slow');
jQuery('div.postpop').show('slow');
jQuery('div#reponse2').hide('fast');
jQuery('div#reponse3').hide('fast');
});
This works perfectly well but as size of text on page changes quite a
bit I need to send reader to either top of page automatically or
better to a certain div
How can I achieve this as simulating a click on a link doesn't work
using locallScroll as I do for top of page or botton of page
Thanks for help

Reply via email to