page-jump

Can I force a page jump in HTML printing?

I'm making a HTML report that is going to be printable, and it has "sections" that should start in a new page. Is there any way to put something in the HTML/CSS that will signal to the browser that it needs to jump to a new page at that point? I don't need this to work in every browser out there, I think I can tell people to use a spec...

How to go to anchor tag in scrollable div without having the whole browser jump down?

I'm building a simple glossary widget as part of a larger project for a client. The content of the glossary is enclosed within a scrollable div (overflow:auto). Each letter has an anchor tag associated with it (#a, #b, #c, etc). Above the scrollable div is a div which contains every letter of the alphabet. Clicking on one of these letter...

How to make ASP.NET DataPager control jump to ListView page based on element ID.

Hey guys, I have what I hope to be a simple question, though Google has been no help to me so far. I have an ASP.NET ListView control with a datapager and would like for the pager to jump to a specific page based on a supplied input ID of one the data bound items. In my particular example, I have a ListView of time periods (e.g.: Jan...

Scrollbar within a scrollbar only make the inner scrollbar jump to id

I have a page that requires a scrollbar - http://www.aus-media.com/dev/site_BYJ/schedule-pricing/pricing.html You will notice (unless you are running at a high resolution with a big screen) that there is an outer scrollbar for the main page as well as an inner scrollbar for the content. When you click on one of the sub items e.g. payme...

jQuery UI Dialog cause page jump on open & close on ASP.NET

Hello all, I have an ASP.NET C# page, with image thumbnails in it. I created a script that opens a jQuery UI Dialog on each hover on a thumbnail that shows me the thumbnail in larger size in a dialog view, and when I hover out - dialog closes. My little annoying problem is, that in every mouseover (trigger dialog to open) - the page make...

Switching layouts page jumping (improvement to script)

Hello, I'm using this script to switch layouts in a page: $("span.switcher").click(function () { $("span.switcher").toggleClass("swap"); /*!*/ $("ol.search-results").fadeOut("fast", function() { $(this).fadeIn("fast").toggleClass("grid"); }); The script works fine, the problem I have is that if the switch view is down...