1) Script Title: Virtual Pagination
2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...pagination.htm
3) Describe problem: Using Flatview, and it generates the page numbers in the little boxes just fine, but in IE, when there are more than 3 pages, the next box(s) shift to a line below the rest. I haven't found anything in the style sheets that will change how the containing div behaves. Of course, it works perfectly in FF.
Now, if I try to insert the alternate array for textbox links, it won't work in either browser, and I can't find any reason for that, but I can live without it for a while, but sure would be good to fix this at the same time. And yes, it works on your demo page. The only thing unusual is that I have an onload function that starts the lightbox, virtual page, and hvmenu:(Many thanks to J. Schurer for this in a previous post.)Code:<script language="JavaScript1.2"> function _begin() { var pagecontent=new virtualpaginate("virtualpage", 1) pagecontent.buildpagination("paginatediv") if ( typeof window.addEventListener != "undefined" ) window.addEventListener( "load", initLightbox, false ); else if ( typeof window.attachEvent != "undefined" ) window.attachEvent( "onload", initLightbox ); else { if ( window.onload != null ) { var oldOnload = window.onload; window.onload = function ( e ) { oldOnload( e ); initLightbox(); }; } else window.onload = initLightbox; } Go() } </script>



Reply With Quote

Bookmarks