Keeping The Location Of A 'drag-able' Box Between Page Loads

Jan 23, 2007

I am trying to make a floating "drag-able" navigation box that will seem not to reload between pages. I hope this make sense

The navigation is in a floating box that can be dragged as well as collapsed. And when you go from page to page the box will remain in the same location and in the same state (open or collapsed) ultimately creating the illusion that the nav box doesn't reload. Can this be done with JS? If so is the way to maintain the location with cookies or is there another way?

View 2 Replies


ADVERTISEMENT

Location.href Ignores Assignment And Loads A Blank Page

Jul 20, 2005

I have a webpage(with a text field and a button) which prompts for a
local file and attempts to load the file in the window if the user
clicks on the button. The javascript code onClick event uses the
location.href property to achieve the desired result. (This loaded
page has some additional functionality which lets them upload the
contents to the server.)

This approach only seem to work for some computers and on others it is
loading a blank page. I have alerts in the code to show that
location.href is correctly reflecting the file location after the
assignment. When it is loading the blank page I see the message
"Opening page about:blank" on the status bar. Iam currently using IE6
sp1 on Win2k. This issue is not just limited to this combination. We
are experiencing issues with IE5.5, WinXP as well.

The code works if I pass a web site address. It only fails if I
attempt to pass a file name(c: est.htm)

Any thoughts on why the blank page is being loaded or how can I go
about resolving this issue.

View 2 Replies View Related

Page Loads Slowly - Page Loads A Second Or So Slower With Each One Added

Dec 2, 2011

It seems like when I load javascript code into a page, that each item I add, such as an accordian vertical navbar, image slider, etc, that each time I add one, the page loads a second or so slower with each one added. I would like some of these features, but is this just a part of life, or are there tricks to avoid the slower load time? It is not major time but after the 2 items I mentioned, it added on about 2 seconds.

I read that $(document).ready(function() might slow me down but I do not see that statement in any of my .js files.

View 4 Replies View Related

Click And Drag Item - Snap To Specific Location

Nov 16, 2009

Below is my script. This will let me click and drag an item on my site. I need the image to not only do this, but also snap to a specific location. There will be approx. 30 items that will be snapping to the same location.

<head><style type="text/css">
.drag{
position:relative;
cursor:hand;
z-index: 100;
}
</style><script type="text/javascript"> .....

dragobject.initialize()
</script>
</head>
<body>
<img src="test.gif"><br>
<img src="test2.gif"><br>
<b>"Hi there</b>
</body>

View 1 Replies View Related

Keeping A Div At The Bottom Of The Page?

Nov 8, 2010

On the iphone I can keep a object on the top of the page by using the following in a interval:

Code:
document.getElementById('object').style.top = window.pageYOffset+'px';

I cannot figure out how to keep it at the bottom (to replicate fixed positioning)

View 4 Replies View Related

Keeping 'on' State Active On Page?

Nov 7, 2010

At the link below I've built the nav using CSS (see code below). How do I make the 'on' state stay active on each specific page? (i.e the 'about us' rollover image stays active on the 'about us' page)

[URL]

CSS:
/* -----------begin nav layout styles-------------- */
#navigation {
width: 455px;
height: 116px;

[Code].....

View 4 Replies View Related

Keeping Page In Same Place After Form Submission?

Aug 4, 2010

I would like the page to not refresh and jump to the top of the page after they submit there answer. So on questions that use radio buttons I have been using

<input type="submit" value="Submit" onclick="get_radio_value(); return false;" />

for the submit buttion and that works perfect. I try and use it on questions that use checkboxes and it doesnt work so as a work around I am using the form's action attribute to set it to a link on the page. Here is my form code:

<form name="question2" action="#q2">2. <strong>Multiple choice:</strong><a name="q2"></a> Which patient or patients could be transferred to another hospital under the EMTALA Act?<br /> <input type="checkbox" value="a" name="aquestion" />Smith, Bill<br /><input[code]....

View 6 Replies View Related

Redirect A User To Another Page While Keeping The Passed In #parameter?

Aug 20, 2009

I posted a similar thread about this in the .NET forum, but I thought maybe there was a javascript way of doing what I need to do.Is there a way to redirect a user to another page while keeping the passed in #parameter?For example, if the user clicks the link:

page1.html#event1

Can I redirect to:

page2.html#event1

Basically keeping the #parameter in tact?

View 1 Replies View Related

JQuery :: Keeping A Specific Tab Selected After Page Refresh Or Redirect?

May 4, 2011

I am currently using:

$("ul.tabs li:first").addClass("active").show();
$(".tab_content:first").show();
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active");

[Code]....

There are 2 options I could use but I don't know how to do it.

1. Using a get parameter to select the tab

2. Using the cookie plugin (not sure how that works)

View 4 Replies View Related

Show A Picture On A Page Before The Page Loads?

May 19, 2010

I am looking for a way to show a picture on a page before the page loads.

for example. I already have a page but I want to show the visitors a image for 5 seconds before they can see the rest of the page.

Is this possible an if so how can I get it.

Maybe a script or a link where I can find it.

View 2 Replies View Related

Make Whole Page Send The User After Some Seconds To Another Page And Not Only The Iframe And Parent Location?

Jan 10, 2011

I have an webbpage, and in the middle of it there is an iframe to a php site. So i have used this code, so after some seconds the iframe will send the guest to another page. <meta http-equiv="refresh" traget="_top" content="5 url=http://mypage.com"/> But the thing is that i want the WHOLE page to reload, and go to that page after 5 seconds (we can say). With that code, only the iframe are going to another page. Is it possible to make the whole page send the user after some seconds, to another page and not only the iframe?

View 1 Replies View Related

Link To Page Using Target Blank & Linking Page's Window Location?

Feb 16, 2011

Basically, I have a link that should open the targeted link in a blank page, and upon the link being clicked, the original page's URL should be changed. The reason for this is that the user has to browse information on another website, and then pass the information on to me via a contact form, so rather than make them click back on my tab in the browser, and then find the "Contact" page link to fill in the form, I thought it would a good feature to simply go ahead and load the "Contact" page upon them clicking the link to the external page (which of course loads in a new tab). Here is the code I have in place:

Code JavaScript:
<a href="http://www.othersite.com/" target="_blank" onclick="window.location.href='http://www.mysite.com/contactus.php';">Other Site</a>

This all works fine on my computer, regardless of the browser that I use. One of my partners on this project called me this morning and said that the link was taking him directly to the "Contact" page without opening the "Other Site." This is strange because after I put this in place, I showed it to him and it worked fine. Now, a few days later, and it does not work. He said that he cleared his browser cache, history, cookies, etc. and the problem did not go away. He uses IE8. After he told me it was no longer working, I went to test it myself, and it works fine for me no matter which browser I use (IE8 or 9, Firefox 3 or 4 Beta).

why this might have worked one day and not the next? Is it simply a problem on his computer, or could it be an issue where based on what type of browser you are using, this won't work. Also, I know this is the JavaScript forum, but is there a way to do this in PHP without using the JavaScript onclick event? Obviously, I can't use the header() function since this functionality needs to be present on a link within text of a page.

View 2 Replies View Related

Drag Div And Scroll Page

Jan 17, 2007

I have a floating div which I drag all over the page. If the page has
scrollbars and users drag the floating div to the very top, page
scrolls up too. The problem occurs at this moment. As page scrolls up,
the div gets detached from the mouse while dragging.

How can I keep the floating div to always stay attached to the mouse
during a dragging process and scrolling the page? Code:

View 2 Replies View Related

Drag Layer In A Html Page?

Apr 6, 2009

I need to make a layer drag able in my html page. Please any one give me a tutorial for doing that

View 1 Replies View Related

Display First Div When Page Loads

May 14, 2009

I have some code which toggles the content on the page. This works fine but I need the first div to be showing when the page loads and its tab to have a selected state.

<html>
<head>
<title></title>
<style type="text/css">
img {border:none;}
#tab-nav {
padding: 0px 0 0px 110px;
height:41px;
[Code]...

View 8 Replies View Related

Run Code After Page Loads?

Jun 6, 2010

i have a javascript bookmark to log me onto my schools site[URL].. it works fine if the page is already open, but with using the link to open the page, it runs the remaning script before the page loads and it doesn't work. is there any way to fix this withou using setTimeout()

View 2 Replies View Related

Div Slides Onto Page As It Loads?

Sep 14, 2011

where a div slides onto the screen as soon as a page loads.

My client wants something like this: [URL] (without parallax or the fade-in) but I refuse to do it in Flash, obviously.

I have this gallery here: [URL] The div id is wrap.

View 13 Replies View Related

Controlling What Position A Page Loads In

Jan 30, 2007

<BODY onload="window.scrollTo(x,y)">

However I am linking to Google Images so I can't modify their page
code.

Is there a way to link from frame a to frame b so that the javascript
in frame a decides and controls at what position the page will load?

View 3 Replies View Related

How To Make A Function Run When Web Page Loads.

Jul 20, 2005

I have a slide show program. First theres stuff to set up the array, and the time between slides Then a function startIt()is defined then a function stopIt()
Then two buttons, Start and Stop, which when pressed call the relevant
functions.

When the page loads, you have to click the Start button to get the
slide show running, but I'd like it to start running straight away
without having to click. I can't for the life of me figure this out.
I thought it was just a question of putting the line
startIt(); Code:

View 2 Replies View Related

JQuery :: Disabling Page Re-loads If Another One Is Used

Apr 20, 2011

To begin, I'm a novice at this. I'm using 2 JQuerys on a page -

[Code]...

The first fades a page in and out when loading. The second 'smoothly' scrolls the page down to anchor text in the page. The problem is that the 1st script 'overpowers' the second, so when you click on an anchor text link it starts to 'smoothly scroll down, then the first script kicks in an re-loads the page. Is there a way of stopping the first script if the second one is being used?

View 5 Replies View Related

JQuery :: How To Do Some Animation When The Page Loads

Jan 9, 2010

When the DOM is ready you can write:

Say now, you want to try and do some animation done by default, in the below example I have done some animation only when the user do mouse over, how can i do that by default as in when the page loads.

View 2 Replies View Related

Firing A CSS Class When Page Loads?

Sep 14, 2011

Currently, I have code which fires a css class upon clicking a link like this:

Code:

<a href="http://www.google.com/">
<span class="frontbox" </span>Iframe example </a>

How can I fire this "frontbox" class when page loads, rather than having a visitor click the link?

View 1 Replies View Related

Set Text As Hidden When Page Loads?

Feb 13, 2009

I have a hotspot on an image that when the user moves their mouse over it makes some text appear from 0% to 100% opacity.

This function works fine, but when the page loads for the first time the text is already displayed. So Im wondering how to set the initial opacity of the text to 0% so its hidden until activated?

Heres the code I have at the moment (relevent parts in orange):

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

[Code]....

I guessed by adding "sampletext2=hide" to the top but this did no good!

View 3 Replies View Related

Give Focus When A Page Loads?

May 2, 2009

I have a text box to which I give focus when a page loads. There is more than one submit button on the form. When I enter something in the textbox then hit Enter the first submit button on the form is activated. Is there some simple code I can use to shift focus to the submit button I want as I press Enter?

View 10 Replies View Related

Hide Element When Page Loads?

Dec 15, 2009

Does anyone know what's wrong with this code because when the page loads, the link is not being hidden

window.onload = setTarget;
function setTarget()
{
var theLinks = document.getElementsByTagName('a');
for(var i = 0; i < theLinks.length; i++)
{
if(theLinks[i].getAttribute('href') == '/subjects/new')

[Code]...

View 3 Replies View Related

Preload All The Images When The Page Loads?

Dec 29, 2010

i am working on a facebook like photo viewer. I have used javascript to declare an array of about 200 images. I have the following approach to pre-load the images.I preload all the images when the page loads:

HTML: <body onload = "lodpic()">
JAVASCRIPT:
function lodpic()
{
for(i=0; i<=199; i++) {[code]....

The problem is the page tries to load all the images when opened. And when the user clicks "next" to view other photos, the other photo is still loading where as some are already loaded.I would like the code to be able to load the photo that the user is currently viewing as the user gets to that picture, before the page tries to finish loading all the photos.In other words, if the user wants to view a particular photo directly, that photo should get the priority of loading quickly.

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved