Scroll Bar Issue
I am working on a site that has 5 main pages each accessible from a standard menu. On 2 of these pages the content fits within the window and there is no need for a scrollbar, while the other 3 have more content and a scrollbar is needed to view it all. The site functions perfectly in IE. On the shorter pages in IE the scrollbar remains in place even though it is not needed, but it is disabled. However in Firefox the scrollbar disappears on the shorter pages where it is not needed.
This makes the page slightly wider, and as a result my page shifts slightly so that it remains centred in the now slightly-wider page. So as I browse between the longer and shorter pages, they move slightly from side to side. Can I make the scroll bar in Firefox remain in place on pages where the content fits in the window, as happens in IE? Or are there any other ways around this issue?
View Replies
How can I make a text scroller(up-down) with some msgs that serve as links too! I want the msgs to be on a simple text file and will be imported to the script and scrolled.do you know of any ready asp script or javascript?
View Replies
View Related
I want codings to scroll text on click event using javascript.
View Replies
View Related
As a mean of not having to use Framesets/Frames with all the bad side effects/workarounds that come with them, I want to know if it is possible to code a scrolling veritcal bar into a table <TD> ...
View Replies
View Related
Apparently you can do a window (for want of a better word) without having the vertical scroll bar to the right there, which you get regardless of the height of the window.We are working on pop up message boxes (JS, calling standard ASP), and can't work out how to get rid of the scroll bar. Some one in the office is claiming it can be done, but am at a complete loss how to do it.
View Replies
View Related
I have a page that does a postback using ASP.NET and VB.NET. Basically, there is a form item that changes the settings on the page and it is near the bottom of the page. If you change it, the page has to refresh to display the changes to the page, but when it does, the refresh causes the page to be displayed at the TOP of the page.
Is there a way to force the page to either A: scroll to the bottom or B: (even better) scroll to a certain focus point on the page by giving the name of a control or something?
View Replies
View Related
i have a question about a form i am taking online. you have to check the "I have read and understood..." checkbox before the form will let you submit the form, but i have all the terms and conditions embedded in the form as a textarea, and i know that i have seen form's requiring you to scroll through the contents before the checkbox would be enabled (FORCING you to at least acknowledgingly ignore them).
View Replies
View Related
I have an asp page that shows dynamic data. I have it refreshing every 10 seconds. It is a very long page and when it refreshes it goes back to the top. I want the page to refresh and keep its same position.
View Replies
View Related
I am trying to scroll through all elements in my page testing each element for a particular id I have set a <td> tage :
<td id="myvalue">blah</td>
does anyone have any JS I can use to scroll through elements checknig the id attribute???
can I wrap the <td> in a <form> and use :
<code>
numelements = document.form1.elements.length;
for (var j=0; (j < numelements); j++)
if (document.form1.elements[j].id == "saletotal") {
alert("INSALETOTAL");
strsumsaletotal = document.form1.elements[j].text;
break;
}
</code>
View Replies
View Related