The code below is supposed to sync the horizontal scrollbars of two iFrame. It works in Firefox but does not work in IE. In IE, it's not entering the ifr1.scroll() function.
<SCRIPT>
$(window).load( function(){
var ifr1 = $( $('#UserQueue_Header').contents() );
var ifr2 = $( $('#UserQueue_Detail').contents() );
ifr1.scroll( function(){
ifr2.scrollLeft(ifr1.scrollLeft());
});
ifr2.scroll( function(){
ifr1.scrollLeft(ifr2.scrollLeft());
});
});
</SCRIPT>
<iframe src="test.html" id="UserQueue_Header"></iframe>
<iframe src="test.html" id="UserQueue_Detail"></iframe>