[jQuery] jQuery, iframe and scrolldown
Hello,
I am displaying a txt file (log file) in an iframe.
After a certain period of time, i refresh the content of the iframe
doing :
jQuery('iframe#mp').attr('src', samesrc);
previously, i set the event listener :
jQuery('iframe#mp').load(function() {scrolldown();});
so scrolldown() function is called
but i cannot find what to put in that function to force the iframe to
scroll to the bottom of the txt file.
your help will be very appreciated.
thanks you !