The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
22 views

Use of window.location doesn't work on iPad

I'm using some JavaScript that will redirect the user to another URL after a fixed period of time. This is working well on all browsers but on an iPad 3 I have to test on it isn't working. The timeout ...
1
vote
0answers
53 views

AJAX not firing before Callback

I'm attempting to run an AJAX query and insert the results into a local database before moving onto a new window.location. However, the success function to insert the results does not run. Instead the ...
0
votes
2answers
28 views

Postponing window.location to allow time for AJAX

I have an index page which I'd like to use to set up a local database before moving on to another page. However, whenever I have the window.location code activated none of the other functions run, but ...
0
votes
1answer
9 views

window.location search path doesn't work

The following search function navigates to : http://webbsite.com/?search=query instead of http://webbsite.com/search?q=query this._search = function (evt) { var searchValue = ...
0
votes
0answers
102 views

window.location issue with <base> meta tag in IE10

I have used window.location.href in my JS scripts, to go to another page of my website, since ever. But now, IE10 this is not working correctly. And it was ok in previous IE versions. The specific ...
1
vote
1answer
112 views

window.location.reload(true) sends get request

I am developing MVC Web application. I use HttpPost via form.submit to request all views except first/default view. Therefore url in browser's address bar does not change i.e. stays ...
0
votes
0answers
37 views

phonegap redirect to different html depending on language.value

In phonegap Im trying to redirect to different htmls with a callback function depending on the language.value result but it wont even fire the redirectLanguage function.. ...
0
votes
0answers
102 views

How to mobilize all links with http://www.google.com/gwt/x?u= ? if window.location=$link{ window.location=google.com/gwt/$link

I've trying to make the links on some of my pages "mobilized" with this great service by google mobilizer: http://www.google.com/gwt/x?u= Is there a way to prefix all of the links within a div or ...
0
votes
0answers
73 views

access denied error while using window.location.reload

I have made one application that used the java script.There are various windows in my application and each window has one common icon.The functionality of that icon is to refresh the current window. ...
0
votes
1answer
174 views

window.location.href doesn't work on Ipad

Hi I download a canvas with the following codes locally, however it doesn't work on Ipad. Is there anyway to do this? Thanks. var img = canvas.toDataURL("image/png").replace("image/png", ...
2
votes
1answer
155 views

window.location.href doesn't work at IE9

Hi I save a canvas with the following codes. var img = canvas.toDataURL("image/png").replace("image/png", "image/octet-stream"); window.location.href = img; However IE9 doesn't work. Can not ...
0
votes
2answers
177 views

window.location.href not working on Windows Phone 7.1/7.5

Basically I'm doing a simple JS redirect when an event is fired, this code works on a whole host of other mobile/desktop browsers (including desktop versions of IE), but not on WP7.1 and WP7.5 (I ...
0
votes
0answers
22 views

php session parameter doesn't work with js

I built my site on my local host and there are a lot of header(location) functions. After uploading my site on hosting, header() stop working because of html tag before it. I decide to change all my ...
0
votes
2answers
2k views

window.location.href

I know this is a question much discussed but I cant figure out why it does not work for me. This is my function: function ShowComments(){ alert("fired"); var movieShareId = ...
0
votes
1answer
369 views

Remove hash from URL window.location.hash

I found simliar questions, but the solutions are not working for me. I need to remove the # from my URL so that the completed URL is mydomain.com/sub-page-title instead of ...
3
votes
1answer
84 views

Best way to “Exit” in javascript

My goal is to: if(error){ window.location.href = "error.htm"; //end of every thing } What's more, return false wouldnt help because there may be functions inside of functions. My current ...
0
votes
0answers
13 views

How to detect a change to the Location.Hash when the Back button is pushed?

I am trying to detect when my website has gone from: www.mysite.com/ to: www.mysite.com/test then a user has pushed the Back button and it has gone back to www.mysite.com/ Any help ...
-1
votes
2answers
163 views

How to run code after changing the URL via window.location?

I'm doing this but it doesn't work: window.addEventListener("load", function load(event){ alert('hola'); },false); window.location.assign("about:blank"); It's a Greasemonkey script. The new ...
0
votes
3answers
128 views

Replace current url with document.URL

I was trying to get the current URL and replace it with something else. But my code does not work if x = document.URL, but for x = "String" everything works perfectly function test(){ var x = ...
2
votes
2answers
635 views

javascript/jquery to change location.href

This is my HTML <form id="procurar-novo"> <input type="text" name="procurar" placeholder="Pesquisar no Site" value=""> <input id="procurar-submit" ...
1
vote
2answers
193 views

Does Android support window.location.replace or any equivalent?

It seems that the Android browser doesn't properly implement window.location.replace. In most browsers, calling window.location.replace will replace the current URL with the URL passed to it. When ...
0
votes
2answers
41 views

Javascript confirmation and navigate

I have the following snippets, which are self explanatory: HTML: <input class="button" style="height:30px; margin-left: 5px; margin-right: auto; vertical-align: middle;" ...
0
votes
0answers
109 views

handling indirect url change by javascript code by selenium (python)

Hi, This is a beginner's question, as i am new to python/selenium/html/javascript/DOM in general. :) I am sorry in advance for being a bit daunting and over-expressive. I am testing the ...
0
votes
1answer
66 views

switch case statment with window location href as my case

I am looking to use a switch case statement for my different conditions in the location href. I am trying to avoid to keep writing if statements if (/red/.test(self.location.href)){ //do this red ...
0
votes
0answers
66 views

jQueryUI Tabs loads current page in tab body when window.location.href is set previously

Im using this code on my homepage on an autocomplete input to redirect to the chosen result page: select: function(event, ui) { isSelected = true; $(event.target).val(ui.item.value); ...
0
votes
2answers
274 views

watching a $locationProvider Angular.js?

I need to watch changes on the URL bar and do certain actions based on that. I wondered what's the best way to add a watch to view changes to it? thanks much for any thought, Lior
0
votes
3answers
293 views

Passing variable to window.location href [duplicate]

I'm trying to delay outgoing links when clicked, so that googles event tracking have time to occur. I wrote the following code, but I'm unsure of how to pass my variable to window.location. It just ...
0
votes
2answers
45 views

JQGrid does not get relaoded

I have a JQGrid and trying to reload it. And the next statement is the window.location.href = url; code works fine with Internet Explorer but breaks in Chrome. In Chrome, the grid does not get ...
0
votes
3answers
199 views

Java Script redirect is not working in smarty .tpl file

I am developing a web application using PHP, Smarty combination, I have wrote a javascript redirect in the .tpl file, but it is not working now. Please take a look at the code and help me to find out ...
0
votes
2answers
240 views

# for window.location.pathname

I'm trying to redirect to a relative url, like this setTimeout("window.location.pathname = '/help/fusion/index.php#3'", 500); But the # seems to cause a problem when being passed to the ...
1
vote
1answer
315 views

window.location fails to work in IE (IE9)

What Am I trying to do: redirection to home page and to previous page with id. Whats going wrong: fails to work in IE (9) works on Firefox. What I have tried: On click events: <input ...
0
votes
0answers
151 views

jQueryUI Slider bound to dropdown to redirect browser on selection/slide

I have a dropdown like this, with urls stored in options values: <select id="months" onchange="this.options[this.selectedIndex].value && (window.location = ...
1
vote
5answers
143 views

Javascript switch issue with window.location-string

i am currently working on a simple ipad webapp testpiece and got stuck in a simple switch statement that doesn´t work somehow; i want to format elements according to javascripts window.location ...
0
votes
1answer
130 views

jQuery if window location contains any of the given numbers

I'm using a string in the window's location (pid=xxx) to determine what to append to do via jQuery. This is the current jQuery I have: var pid = 123; if ( window.location.href.indexOf("pid=" + pid) ...
0
votes
3answers
715 views

Get root website url in javascript for redirect

I want to redirect to Login page from every page in my website after session timeout. I try to set window.location to the login page: var ParentUrl = encodeURIComponent(window.parent.location.href); ...
0
votes
4answers
187 views

Saving part of window.location in jquery variable on page load

If I have one the following: example.com/test1 example.com/test1/ example.com/photo/test1 example.com/photo/category/test1/ (you get the point) How can I end up with test1 as a variable on load in ...
0
votes
1answer
39 views

Why browser update header when i set url using hash?

I use window.location.hash = mylink to set url every time user move map (add coordinates). But it's always look like page loading (favicon reloads). How to do that page update url without reloading?
0
votes
1answer
77 views

Using javascript or jQuery to do something based on URL of page [closed]

I would like to know a function that checks the url of the page, and if it's a certain URL, take further action. I am not particular skilled with regular expressions, nor do I know if they would be ...
0
votes
2answers
186 views

What is the difference between PHP header and Javascript window.location?

So yeah this came to mind randomly when I was teaching someone how to redirect their page. I wasn't really sure what the main difference was... Is there a reason you would use one over the other? I ...
0
votes
2answers
531 views

Is there a way to have an onload callback after changing window.location.href?

Essentially what I'd like to do is something to the effect of this: window.location.href = "some_location"; window.onload = function() { alert("I'm the new location and I'm loaded!"); }; Is there ...
0
votes
2answers
723 views

jQuery window.location.replace keeps looping

I'm using window.location.replace() with jQuery to redirect to a new page in wordpres if you got a older browser in either Internet explorer or Firefox due to my html5 layout. var ...
0
votes
1answer
324 views

Firefox javascript redirect in ajax callback results white screen

I am trying to redirect Firefox from current address url_1 to url_2 in ajax callback function doing this: window.location = url_2 After this line of code executes, the address line shows the same ...
0
votes
4answers
395 views

javascript if checkbox is checked, href to ?page2, if at ?page2: keep cb checked, when unchecked, href to ?page1

Im totally new to javascript and i have no clue how to get this to work... I modified the code a little, but note that line 6 makes no sense. That is the main reason for this post. <script> ...
1
vote
6answers
279 views

if href=url change / add class to parent element

I'm bulding a small menu and I need the help of jQuery to add or replace a class of a menu item if a sub-menu item is currently viewed. <div id="menu"> <ul> ...
-5
votes
2answers
2k views

How can I make a HTML a href hyperlink open a new window using window.location? [closed]

This is my code: <a href="http://www.google.com" onClick="window.location.href='http://www.yahoo.com';return false;" target="_blank">test</a> When you click it, it takes you to Yahoo ...
2
votes
2answers
491 views

Change page using a button in SP2010, strange behaviour

I'm trying to do something in Sharepoint 2010 that ought to be very simple, create a button that changes page (to a "create new item" form as it happens). I set up a Content Editor Webpart and put a ...
1
vote
0answers
97 views

iframe won't load correct hash in firefox

I have an iframe with a differing domain, I have no trouble resizing the iframe by communicating with the parent or the child using jQuery postMessage plugin. However, I have a single page app that ...
2
votes
0answers
56 views

javascript redirect sends X-Requested-With header in opera

Why all methods of change url in opera send header [X-Requested-With] => XMLHttpRequest ? I was checking window.location = url window.open(url,'_self') window.location.replace(url) How can I ...
-1
votes
2answers
510 views

window.location.href not working in my code but window.location.replace is working

in my code i cant redirect to new page when login is correct, instead of "window.location.href" ,window.location.replace is working.how to make this code working $(document).ready(function(){ ...
2
votes
3answers
160 views

How to remove part of the URL within window.location?

I have fetched window.location into a variable. Now, I want to remove part of the string from the href within the location object, but still retain the object. In other words, I want to modify the ...

1 2 3 4 5