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
ADVERTISEMENT
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
Mar 9, 2010
I want to redirect my page to the EXACT same page the user is viewing. Kinda like window.location.refresh(), but it refreshes the page, means it empties some part of the cache and will reload images. I want it to simply open the page again, exactly like when I click a link refering to the same url. I've tried reload(), but it doesn't reload either.
window.location.reload();
window.location.refresh();
window.location = '';
window.location.href = window.location.href;
View 2 Replies
View Related
Feb 3, 2009
<html>
I have used the aforementioned code to validate logout function from my webpage. However, I want to redirect the user to another page (for ex: loginpage) on loggingout.
Attached File(s)
View 4 Replies
View Related
Feb 1, 2010
I have downloaded 2 html pages that give me page1 with a drop down box for a list, and a 'show' button. this then passes dropdown value to page2 and JS presents the text on the page, but I want to use the passed parameter to change the src of an img with ID=img1.can post all the JS if you like but assume i am missing just a one liner replacing the ....
var name = getValue("name");
document.write(name);
View 4 Replies
View Related
Apr 21, 2011
what i want to do is i need to make all clients to go through my custom .php page when they are trying to leave from my web page.this is to develop a billing system for internet access.i need to capture there time spent on internet.i need to direct them to my web page all the time they enter an url in address bar.each and every time they try to go to a new site by entering url in the address bar they need to go through my .php page.is that possible using javascript?
View 4 Replies
View Related
May 27, 2010
I am attempting to redirect a page after a user clicks on a submit button.I have a button:
<input id="SubmitButton" type="submit" class="button" name="-Edit" value="Submit" onClick="toSubmitted();"
And a function:
function toSubmitted() {
document.myForm.action = some URL that has to do with a Filemaker Pro backend.
document.myForm.submit();
window.location = "www.google.com";
}
Supposed to submit myForm, which sends necessary data to the FileMaker backend, and then I am wanting to redirect to a new page immediately after that.
The "window.location = "www.google.com";" line does not seem to function in its present location.
View 2 Replies
View Related
Apr 1, 2009
How can I show a popup that is not blocked and then redirect the user to a page?
View 1 Replies
View Related
Sep 27, 2007
I have a strange problem... I have a form with a text area that contains an XML document. This document can be modified by the user.
Once the document has been modified, the user pressed the "Submit" button to submit the modification (onclick=modify())... and go to another jsp page.... in my javascript, I have the following code:
function modify()
{
myRand=parseInt(Math.random()*99999999); // cache buster
var docXML=document.forms[0].xml.value;
var plist="myRand="+myRand+"&docXML="+escape(docXML);
url="modify_xml.jsp?"+plist;
document.forms[0].action=url;
document.forms[0].submit();
}
With Firefox, the problem does not occur.... but with Explorer, the form is not even submitted!!!!! Is there a workaround for this? The XML document is not even very big.
View 7 Replies
View Related
Dec 24, 2009
I'm passing the id of a div as a parameter. I'm not sure how to refer to it with Jquery. The following does not work:
Code:
function updatemail(param1, param2) {
$("#param2").animate({ opacity: "show" }, 300);
}
I also tried $(param2) but it did not work.
View 2 Replies
View Related
Dec 1, 2011
New to JS. Have ordered some new books, but need to get somethings going in the mean time. What I wanted to do is to link to a new page having a date range input in the form of 6 text boxes, 2 sets of mm-dd-yy, from and to, where the upon loading the page box 1 of the from would auto focus and then auto tab and then post where php could take over on the server side. Setting up the form and the lay out, no problem. Auto focusing went just like expected using the following code, included because on the next step everything fell apart.
Code:
<script type="text/javascript" >
window.onload=function() {
document.getElementById("input1").focus();
}
</script>
So then the wheels came off and in response, began to simplify what was trying to be done to find where the issues were. As far as I can get working is:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "[URL]">
<html>
<head>
<script type="text/javascript" >
window.onload=function() {
document.getElementById("input1").focus();
}
</script>
<script type="text/javascript" >
function myFunc() {
alert("is this working");
}
</script>
</head>
<body>
<input id="input1" name="input1" type="text" onkeyup="myFunc()" maxlength="2" value="type a No." />
</body>
</html>
First issue with this: When I first get to the page everything is just as ordered. The focus is on the text box and the default value is "type a No." When I press a key onkeyup, I bring up the alert box with "is this working" in it. But when I refresh the page with the refresh button, after clicking the "ok" on the alert box, the character that was typed in is still displayed. If I use the link to the page, or the URL from the address bar, then the page reloads properly with the default value, "type a No".
How do you get the default textbox value using the refresh button as apposed to reloading the page using a link or from the address bar? Using Firefox 8.0 more important at the moment: If I change the script to pass an argument to the function the script crashes. It does not pull up an alert box and freezes. My guess is that I'm doing something wrong on a concept level. Changed the default value of the text box to " ". Looked like to me there was an issue with the size specification and the default string length as you could only enter in a key stroke by highlighting the text and replacing it.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "[URL]">
<html>
<head>
<script type="text/javascript" >
window.onload=function() {
document.getElementById("input1").focus();
}
</script>
<script type="text/javascript" >
function myFunc(awe) {
alert(awe);
}
</script>
</head>
<body>
<input id="input1" name="input1" type="text" onkeyup="myFunc("123")" maxlength="2" value="" />
</body>
</html>
View 1 Replies
View Related
Oct 1, 2006
why this parameter is not passed to function ?
var myDIVnode1 = document.createElement("DIV");
// etc
myDIVnode1.appendChild(document.createTextNode("a"));
// this shows "a"
alert(myDIVnode1.firstChild.nodeValue);
myDIVnode1.onclick= function() { somefunc(myDIVnode.firstChild.nodeValue); };
function somefunc(param)
{
// this returns "undefined" !!??
alert(param);
}
View 4 Replies
View Related
Aug 23, 2010
I am trying to match a passed parameter on a url to an area on an image map. So far I can find the correct area using
Code:
$('#mediummap area').each(function(i){
href = $(this).attr('href');
if (href == id) {
alert('Found ID ' + id);
}});}});
But next I need to retrieve the co-ordinates for the Area. I have tried
Code:
coords = $('this').attr('coords');
And
Code:
coords = $('this').coords();
I can not seem to get the value back, just an undefined return. What I want to do is to find the point on the image map and then centre that point with in the viewport for the image (large image, small viewport).
View 1 Replies
View Related
Mar 1, 2010
I'm not one for making my own scripts, so not quite sure about the best way to go about doing this. I've got a form with 2 different sets of radio buttons. Upon submitting, I'd like to redirect the user to a certain page, based on the selections they made among the radio buttons.
View 2 Replies
View Related
Jun 12, 2011
want to take this redirect script and modify it so that it rotates a banner image instead of sending the user to another page. The script works so that if the window is out of focus for 10 seconds, it redirects. The images are defined in an external style sheet so I guess I'll have to move that into the document. Also, I want it to be able to work more than once with multiple images, like if the user opens a new tab, comes back, goes to a different tab, the image should change twice. Here's the script:
<script type="text/javascript">
var xScroll, yScroll, timerPoll, timerRedirect, timerClock;
function initRedirect(){
[code].....
View 3 Replies
View Related
Aug 11, 2009
I have a link;
<a href="javascript:{}" onclick="DoSomething(this)">click me</a> And what i'd like to do is use the "this" object to manipulate the css of its parent;
function DoSomething(obj) {
if(obj) {
$(obj).parent.addClass("newstyle");[code]...
Does anyone know how to do this with jquery?
View 2 Replies
View Related
Jun 6, 2009
Im looking for a simple code to redirect to a specific URL on any click on page and redirect to certain url after a certain number of page views.
View 18 Replies
View Related
Aug 10, 2011
I am looking for a TimePicker that will prevent users form selecting times that have already passed, is this possible?
View 4 Replies
View Related
Feb 13, 2011
I need to redirect the user to another url in 5 seconds without the "click" sound.
you'll notice that this:
Code JavaScript:
setTimeout("location.href='http://myurl';",5000);
produces a "click" sound (maybe only in IE). I want to avoid this sound in my code (I know this can be changed in windows in the user's computer).
View 5 Replies
View Related
Mar 17, 2011
I am new on forum and javascript. I have got a query for dynamic geo location javascript. I would like to make a page which redirect to another page based on user REGION. Ex:
If user from EMEA then page1.html,
if user from APAC then page2.html,
if user from Other region then page3.html
View 4 Replies
View Related
Sep 5, 2007
I am currently building a site with a landing page. I would like to add a cookie or some kind of script that detects if the user is returning and skips the homepage to go straight into the site whenever they return.
It would be good if I could apply this script to multiple pages with different names.
Cookies are not my forte so I don't know where to start looking. Googling hasn't done much for me so far, can anyone point me in the direction of a page that explains how to do this?!
View 1 Replies
View Related
Oct 11, 2011
I need the code for if the user enters in a code into the field for example E1 and clicks submit it'll redirect them to a certain form. And if another user entered in E2 it would redirect them to a DIFFERENT form.
View 2 Replies
View Related
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
Jun 29, 2010
I'm trying to get Jquery's Autocomplete to redirect a user based on their input - according to Jquery, it works like this: An autocomplete plugin can be used to search for a term and redirect to a page associated with a resulting item. The following is one way to achieve the redirect:
[Code]....
View 7 Replies
View Related
Jun 25, 2011
I am trying to figure out time functions in PHP. However, I come to know these time and date functions work on the Server. I want to calculate what time a user takes to solve a problem. That means I need to know user's machine's timings. How can that be incorporated? Do I need to use Javascript?
View 7 Replies
View Related
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