Tagged Questions
The location-href tag has no wiki summary.
4
votes
3answers
1k views
JavaScript redirect (location.href) breaks the Back button unless setTimeout() is used
I just came across some odd behavior in Firefox 3.6/Mac. I suspect that it's general Firefox behavior, though.
I created two dead-simple test pages that change the window.location.href property to ...
2
votes
3answers
270 views
jQuery: Active state: AddClass to a link that contains the document.href as href
I'm wondering if its possible to addClass to a link, that has the same href as the document.href?
I tried, but without any luck.
if ($("a").attr("href") == document.location.href) {
...
2
votes
2answers
5k views
FancyBox close from within iframe and take parent page to the link
I found applying the following function to a links onclose works to close Fancybox from within an iFrame:
parent.$.fancybox.close();
I want to take this further and have the link take the parent ...
2
votes
2answers
42 views
Getting values from location
I need to get the search query from the search query of the address of the page.
What is the safest cross-browser, and most efficient method of getting the string. for example:
...
1
vote
2answers
61 views
JavaScript code not working in Safari
I have three pages:
Step1.php -> step2.php -> step3.php
As it shows, after submitting the step1.php it will go to step2.php
In step2.php there is JavaScript on the bottom, and it will ...
1
vote
1answer
143 views
top.document.location.href property behaviour in IE(8/9)
I have a piece of code which works in a way that is unexpected to me. Let me first put down the details, so the code looks more or less like this:
window.onunload = doUnload;
var unLoadTimer;
var ...
1
vote
1answer
218 views
Jquery: Make entire block clickable, while preserving the ability to open in a new tab/window
I don't want to use css to expand the link width/height etc.
With my code, the entire LI is clickable, it opens the a link found within it. I've preserved the middle mouse click to open the link in a ...
0
votes
1answer
39 views
Facebook Like ( in Modal Window ) change location_href
We use PrettyPhoto and newest incarnation 3.1.3 allows users to Like and Tweet within the Modal Window..
This is great, but it doent work (fb that is ). I am yet to find anyone who has got this ...
0
votes
2answers
57 views
Strange JavaScript behaviour with window.location.href and program flow
I have an index site which checks if a cookie exists and if it has the value EN. If so it should redirect to an English index.shtml. Otherwise or if there is no (English) cookie, it should redirect to ...
0
votes
1answer
36 views
how to find all a hrefs that include current url with jQuery
I want to find all the href containing current url even if the whole href is longer.
E.g.
Current url: www.example.com/portfolio/
a href url: www.example.com/portfolio/#28
What I want to do is to ...
0
votes
3answers
245 views
Havling links relative to root?
Is there a way to have all links on a page be relative to the root directory?
For example, on www.example.com/fruits/apples/apple.html I could have a link saying:
<a ...
0
votes
1answer
317 views
Get Current URL and Compare to HREF of link to leave submenu open
I have a simple menu that slides down more UL when the parent LI is clicked, if there is a child UL to follow...
I am trying to make it so when the menu is in a certain directory it will have that ...
0
votes
2answers
206 views
windows.location.href doesn't work
I have a little trouble with javascript.
This is the search box :
<input id="lala" onkeypress="lala(event)" />
This is the script :
<script type="text/javascript">
function lala(e){
...
0
votes
2answers
639 views
jQuery dynamicly change onclick location.href
This works in firefox but doesn't do anything in IE:
$("#_results").autocomplete({
source: data,
minLength: 0,
select: function(event, ui) ...
0
votes
7answers
120 views
HTML - Recomnended href link sytanx
we can give the href like the following
<a href="images\image.png">
<a href="images/image.png">
<a href=".\images\image.png">
<a href="./images/image.png">
which is the ...
0
votes
2answers
38 views
how to link css file at html page
dear all...
i have some script..it lies in some direktori :
var/www/html/dataTables-1.6/media/css/demo_page.css
how to put in html page?
<link href=......??? rel="stylesheet" type="text/css" ...
0
votes
2answers
109 views
href link to # question
I have a question about the href link, tried googling it but could not find much info on this. I have a href link like this:
<a href='#' onclick='openSerialWindow();return ...
0
votes
1answer
876 views
Find out when the window.location.href of an iframe has changed with javascript (jquery)
The question sums it up really...
I have a parent page with a child iframe,
How do you find out when the location of the iframe has changed, i.e. a user has clicked on a link in the iframe and the ...
0
votes
6answers
158 views
How can I change the location of a page and not redirect the user?
I want to be able to change the address of a page but not issue any HTTP requests upon making that change. How can this be done using JavaScript?
-1
votes
1answer
97 views
How do I stop the content with onChange?
I have this problem with onchange:
<form class="form" action="javascript:update();">
<select name="calendar" id="calendar" onchange = "update(); location.href = ...