Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
6answers
6k views
8
votes
2answers
1k views

Detect HTTP or HTTPS then force HTTPS in JavaScript

Is there any way to detect http or https and then force usage of https with javascript? I have some codes for detecting the http or https but I can't force it to use https: . I'm using the ...
8
votes
8answers
420 views

window.location versus just location

Across the web, I see a vast number of JavaScript programmers writing window.location instead of just location. I was curious if anyone could offer an explanation as to why. window is the global ...
7
votes
5answers
250 views

Window.location.hash help needed with syntax

My website is available at http://visualise.ca/ and when you load a post by clicking a thumbnail it will loads the post within the page using ajax. When you close the post it uses this code in order ...
7
votes
1answer
5k views

What exactly can an IFrame do with the top.Location object (cross-domain)?

There is a very particular edge case in cross-domain policies regarding the window.top.Location object... Let's say I have IFrame A , in domain www.xxx.com, living inside a page in domain ...
6
votes
5answers
6k views

PhoneGap for iPhone: problem loading external URL

I'm writing an application for iPad using PhoneGap and I would like to load an external URL without triggering Safari or using internal web browser like ChildBrowser. I'm using the PhoneGap ...
6
votes
2answers
8k views

Change hash without reload in jquery

I have the following code:- $('ul.questions li a').click(function(event) { $('.tab').hide(); $($(this).attr('href')).fadeIn('slow'); event.preventDefault(); window.location.hash = ...
5
votes
2answers
444 views

Is window.location() same as a GET request?

Are cookies preserved while doing windows.location(url), if domain of url is the domain of the current page?
4
votes
2answers
1k views

Calling window.location.href in PhoneGap triggers web browser

Hello I'm trying to develop an application for iPad using PhoneGap. I would like to dinamically load inside the index.html page the main page of an external website. Unfortunately using ...
3
votes
4answers
53 views

I want to use jQuery to get the location and the first folder with window.location

I want to get the location and the first folder, like: http://www.example.com/test/ var $location = window.location.href; alert ($location); this returns ...
3
votes
2answers
105 views

Javascript: Creating a 'weird' conditional re-direct

If I had a normal website this would be a simple enough fix... but I've built my site on tumblr so I need a workaround. Every page runs off of the same code, so any solution script is going to run on ...
3
votes
3answers
3k views

Setting JavaScript window.location

I'm currently setting the window.location.pathname property to redirect the user to a relative URL. The new URL has parameters, so the line of JavaScript looks like this: window.location.pathname = ...
3
votes
1answer
3k views

NS_BINDING_ABORTED Javascript window.location.replace()

I'm writing some Javascript code and I'm trying to change the current page as the result of the user clicking a button. I'm using this snippet of code: window.location.replace("/customer/order/12"); ...
2
votes
5answers
200 views

How to change window.location.href in JavaScript and then execute more JS?

I have code snippent which is executed on click of a link which is as below cj_redirecturl="/HomeWork/main/load_course"; utility.xhttprw.data(cj_redirecturl,{data:courseid},function(response){ ...
2
votes
3answers
189 views

How to unit test page navigation?

Use case is this: I want to unit test (in browser, QUnit or something of the kind) a code run in a page. One of the things a page can do is to navigate away to another page. I have problem catching ...
2
votes
4answers
106 views

Using window.location.hash in jQuery

I would like to make a color fading navigation menu using jQuery, in which the "pressed" button corresponding to the current page behaves differently from the "unpressed" button (specifically, it ...
2
votes
2answers
323 views

Why won't window.location load a new page?

This bit of code used to work, and now it doesn't: var url = myurl +'?id=' + id + '&phase=' + phase; window.location = url; Using the IE dev toolbar I've verified that url has a valid url, and ...
2
votes
3answers
784 views

setTimeout with window.location and $(this)

i'm relatively new to this and was wondering if anyone could point me in the right direction! I'm looking to animate some aspects of the page loading when menu links are clicked. $("document").ready( ...
2
votes
3answers
2k views

Refresh the parent window from the child window in javascript

I have looked for awhile and cannot find an answer that fits my needs. I have a page that pops a window (window.open), logs the user in (creates a cookie, set session) then redirects to another page. ...
2
votes
1answer
445 views

possible to replace window.location.hash?

I'm wondering whether it's possible to change the hash in window.location.hash and replace it with 'this.id'. Or would I need to change the entire window.location? Many thanks!
2
votes
3answers
4k views

removing the # from window.location.hash

I have this simple script: $(document).ready(function(){ var $yoyo = window.location.hash; alert($yoyo); }); But I need to get rid of the # symbol as I'll be using the variable to locate div ...
2
votes
1answer
1k views

window.onbeforeunload and window.location.href in IE

We are using window.location.href to navigate the user to a page. Also, we have configured the window.onbeforeunload event to alert users in case there are any unsaved changes. window.onbeforeunload ...
2
votes
5answers
6k views

window.location = #anchor doesn't work in IE

On this map: http://web.pacific.edu/documents/marketing/campus-map/version%202/stockton-campus-2.0.htm I have an anchor at the top, and I want the page to jump to the anchor when a link is clicked. ...
1
vote
3answers
58 views

execute if, if window.location contains two strings and a specified variable

I am using this javascript <script> var windowloc = window.location; var pink ="http://my.blogspot.com/search/label/Pink%20Template"; var blue ...
1
vote
5answers
54 views

If excludes url containing www

I have the below JavaScript, and when the url (window.location) does not contain www. the javascript IS executed var windowloc = window.location; // http://mywebsite.com/ var homeurl = ...
1
vote
1answer
167 views

js if window.location.href not match, then jump to

How to make a window.location.href judge? if window.location.href not match ?search=, make the current url jump to http://localhost/search?search=car my code not work, or I should use indexOf to ...
1
vote
1answer
81 views

How to override window.location in Firefox?

I am trying to override the window.location in Firefox, through the following code and keep getting an error (actually want to prevent the default behavior, but I think that's not relevant) : ...
1
vote
1answer
50 views

Only apply jquery if the url has a pathname

I recently asked a question how would you apply this jquery $(".homeimage").wrap("<a href='" + location.protocol + '//' + location.hostname + "'></a>"); only if the url has a pathname ...
1
vote
2answers
434 views

javascript window.location not working in firefox

this one is really giving me a headache: using javascript (let's say on page1.html) i use code similar to below to launch a new window: var popwindow = window.open("http://www.stackoverflow.com"); ...
1
vote
3answers
182 views

JavaScript window.location behaviour

With the following code I am redirecting user to a php script, where some actions are performed: requestObject.queries = { lv : searchQueryLV, desc : searchQueryDesc, ru : ...
1
vote
2answers
1k views

window.parent.location.href IE9 Bug?

Scenario: domain1.com hosts an iFrame of domain2.com. domain2.com is using javascript to trigger dynamic links that need to route to the parent window. The links are all relative paths. Clicking on ...
1
vote
2answers
374 views

window.location.search query as JSON

Is there a better way to convert a URL's location.search as an object? Maybe just more efficient or trimmed down? I'm using jQuery, but pure JS can work too. var query = ...
1
vote
3answers
456 views

Jquery: Getting certain url path using window.location

Our url pathname is www.nicadpower.com/index.com but we only want to get the pathname after www.nicadpower.com which is index.com how can we get index.com using window.location and jquery
1
vote
2answers
501 views

Targeting window.location.pathname

I have a url similiar to this: www.mysite.com/products/ I was using this to test against the pathname: if (/\/products\//.test(window.location)) { _gaq.push(['_trackPageview', ...
1
vote
4answers
113 views

how can you open a new page using javascript

i have code that sets window.location.href = [someurl] but i want to have it open up in a new tab. Is there anyway to have the above code include target="_blank" from javascript?
1
vote
3answers
79 views

Why does this not cause a browser redirect?

if (selectedddItem.toString().indexOf("6ft with two") > -1) { window.location = "http://www.google.com/"; alert("just passed over"); } The alert window opens so the condition is true... ...
1
vote
1answer
108 views

window.location on the aliased domain

In the project I work with there is an apache aliasing set up so that the domain site-main.com points to the site-source.com (both our domians). When configuring the js app I use window.location to ...
1
vote
1answer
233 views

Rest API : passing the window.location.href in the REST uri

I have a rest api that is used trough JSONP due to cross domain issues , i've implemeted an errorlogger that catches every error that happens on the page and posts it to the server the uri for the ...
1
vote
3answers
728 views

window unload method in javascript

Why doesn't this code work? $(window).unload(function(){ window.location = 'http://www.google.com/'; });
1
vote
3answers
1k views

JQuery.address how to remove # from url (javascript window.location remove #)

I need to remove the # from url when my event.value is == to /. I've got a lighbox with jquery.address that stores references to open images, when i close it i need to remove the # mark becouse this ...
1
vote
3answers
298 views

Hash doesn't work with back button; Need javascript to call function on url change

Hey everyone, this code is meant to read what comes after the hash in the url and display a specific div depending on that value. Right now it works fine, except for when you try changing the hash ...
1
vote
1answer
647 views

if function with window.location.hash help

I have a function that changes the hash in the url and inserts/removes a div from my main page. I did this was so that I can have a page that you can maneuver through without a reload, but at the same ...
1
vote
1answer
179 views

Issues w/ Silverlight Navigation Page + window.location.hash

I have silverlight navigation pages (with NavigationCacheMode="Required"). When i normally navigate to these pages (via mouse clicks) the pages get loaded as expected (they are only created once due ...
1
vote
2answers
120 views

Can I with javascript lockdown browser address bar to a specific domain?

I'm quite new at Javascript, and have so far only used the DOM, but I now need to access the browser model, and I don't know if what I'd like to do is possible. The problem: sometimes I let my ...
1
vote
1answer
381 views

jquery first slide out, and when finished got to the clicked page

Me again. The sliding in works like a charm. But I want to extend the script. I want that the boxes slide out, en when that's finished then load the clicked page. The sliding out part is working ...
1
vote
2answers
2k views

Selenium RC: How to click buttons that use onclick window.location?

I have a button (outside of a form) that redirects to another page using the onclick attribute that calls window.location to redirect the user to another page. This time I can't change the HTML. I am ...
1
vote
3answers
938 views

Triggering shouldStartLoadWithRequest with multiple window.location.href calls

Im trying to pass multiple things from a webpage inside a UIWebView back to my iPhone app via the shouldStartLoadWithRequest method of the UIWebView. Basically my webpage calls window.location.href = ...
1
vote
1answer
2k views

Firefox window.parent.location

I've a Html page index.htm which has an iframe to page search.htm the search.htm has code like this function executeSearch() { window.parent.location = "/SearchResults.aspx?t=" + ...
1
vote
1answer
359 views

Scroll window after timeout

I would like to be able to use jQuery's scrollTo plugin to animate the window scroll down to a div when Google directions are loaded. Could someone please help me convert the setTimeout line to jQuery ...
1
vote
4answers
3k views

JSP or JavaScript equivalent to PHP's $_SERVER[“HTTP_HOST”]?

I've go an absolute URL in my JavaScript that I have hard coded for window.location. I don't want to have to change this every time I am testing my app. In PHP I would have handled this by testing ...

1 2