Pass Value With A Variable In Window.location Not Working In Firefox
May 6, 2011
I have this [code]...
It works perfectly fine in IE but it won't work in firefox. Both link and var does not appear in the URL when I get to index.php.
Can anyone explain why? How is it not working in firefox?
View 1 Replies
ADVERTISEMENT
Mar 18, 2007
In my case it doesn't work. I need to transfer some variables from js to php Any work arounds???
View 5 Replies
View Related
Aug 3, 2010
I need to pass the current window location through a hidden input to a php form handler. I tried this:
Code: <input type='hidden' name='curpage' value='javascript:window.location'>
And this: Code: <input type='hidden' name='curpage' value='javascript:print window.location;'>
View 2 Replies
View Related
Aug 14, 2010
this is a newbie question, and probably really dumb, but If I create a function that looks like this...
function recall(tim)
{
setTimeout("window.location.replace('somepage.html')",tim);
}
it works fine when called. However; I want to be able to pass the page url in a variable, something like this.
[Code]...
View 3 Replies
View Related
Nov 24, 2009
I wonder why firefox won't work with this script below, but it works on IE, Safari, and Chrome instead?
Code:
$(document).ready(function(){
$(window).resize(function(){
location.reload();
[Code]....
The reason to reload the page is to reload the google map when the window is being resized.
Here is the link to look at, [URL]
View 2 Replies
View Related
Oct 18, 2010
I have come up with form which pulls membership id, allows checkbox selections and commentry (custom feedback). The final piece that needs to be captured is the iframe's url. Now the content in the iframe is content produced by (madcap) flare.
I need to capture the window.location of the iframe url and pass that onto the asp.net masterpage. The iframe is also located in a content page. The iframes content is controlled by it's own TOC. I have added a script to this output so that each time the content (page) in the iframe changes the script alert's me of the new URL of the page just clicked/opened (this is the information I need passed as a variable).
Here is the code producing the desired alert output (page url).
Code:
The above produces the output I would like to capture (but instead of an alert output, I require this as a string) which will allow the insertion into my form as the final piece of information required.
I am not sure how I can convert or catch the output. Of course I would not want to use the alert function everytime the page changes, but would like to have the window.location bound to a string which I can then use when inserting into my codebehind sql statement.
All the captured data is being inserted using vb.net into a sql table.
I just need to make that content page > iframe (window.location) a global variable that my masterpages codebehind can inject into the INSERT SQL statement.
View 11 Replies
View Related
Jun 13, 2007
The following JS script works fine in FF and IE7. It fails though in IE6, which happens to be my target audience. Whats failing is.. the window.location is not calling.
function confirmation(text,url_link) {
var answer = confirm(text)
if (answer){
window.location = url_link;
}
}
View 2 Replies
View Related
Oct 5, 2010
If I do not have enough information provided, please tell me. I am VERY weak when it comes to Javascript.I am trying to pass the variable status using a form and it works in IE, but not in Firefox/Chrome.How it is called;
Code:
<select name='status' id='status' onChange=""doSubStatus()"">
Code:
function doSubStatus() {
var selStatus;
var statusList;
[code]....
In IE, the variables status and sstatus are passed. In Firefox, only status is passed.
View 3 Replies
View Related
May 11, 2010
fixing window.location.href on localpath is not working in Firefox only but working fine in IE.
View 1 Replies
View Related
Feb 14, 2010
Danged if I can find the thread, but I swear I saw a $.url() reference in here a day or two ago. It was beingutilized for parsing out the window.location or window.location.search parameters. I made a mental note because that was something I would be needing to do.
Now I can't find it, either because the search isn't finding it or I was dreaming about this function existing.
I rummaged about the API docs and didn't find it there either. Is it something provided by one of the plugins and not a function native to jQuery?
View 3 Replies
View Related
Jan 26, 2009
i try to open my local system share folder in browser using command window.location= 'file:\c:sharefolder'; where the folder sharefoler is in c; and it is shared it is not opening in firefox and Google Chrome
View 6 Replies
View Related
Jun 9, 2009
I have a real problem with an e-commerce site which has worked for years without a hitch but with the uptake of IE8 (it seems) this problem is getting more and more frequent Problem: customer continues through checkout on main site (http:[url]....).
When they have to enter their credit card details, they click on a link to open a window (https:[url]....). The details are verified and if valid, the customer is returned to the confirmation page in the parent screen (http:[url]....) and the payment window is closed . Pop-up blockers are causing problems here but even when pop-up blockers are disabled, the confirmation page loads in a new window.I'm using :
<script language="JavaScript">
<!--
window.opener.location="<?php echo ($main_url);?>thanks.php>";[code].....
But the page always loads in a new window and not the parent window.Is there any way to load the confirmation page in the parent window?
View 1 Replies
View Related
Jun 8, 2009
I have a real problem with an e-commerce site which has worked for years without a hitch but with the uptake of IE8 (it seems) this problem is getting more and more frequent. Problem: customer continues through checkout on main site [URL] When they have to enter their credit card details, they click on a link to open a window ([URL]). The details are verified and if valid, the customer is returned to the confirmation page in the parent screen ([URL]) and the payment window is closed. Pop-up blockers are causing problems here but even when pop-up blockers are disabled, the confirmation page loads in a new window.
[Code]...
View 1 Replies
View Related
Dec 21, 2009
How do I pass a PHP variable into a window.onload event function? I have a URL that I need to pass to the JavaScript file that has this function in it. The JavaScript file itself is being linked from the PHP file that will pass the variable and I've seen many examples of how this is done via embedded JavaScript, but none where someone is linking to an external JavaScript file. I suppose this is probably a trivial matter to most of you, but I've never done this before and could use some guidance!
View 16 Replies
View Related
Feb 6, 2009
The Open Window in Javascript is not working properly in Firefox but is working in IE. What could the reason be?
[Code]...
View 1 Replies
View Related
Jan 14, 2010
I am trying to fix up some code and have run into a problem. For some reason the line of code
Code:
var sizeQ = gid("q" + aq).length;
is not assigning a value when the page is loaded in firefox but in IE it works perfectly.
Code:
function testAnswers(aqNow,review,toClose){
//alert("inside test answers");
var listQa = gid("listQuestions").value;
[code]...
View 3 Replies
View Related
Oct 24, 2010
I have written a simple code to open up a new window onclick of a button as follows;
function loadExamp()
{
var reqType = getElementValue("reqType", 1);
[code]....
The problem is that this code is working on Google Chrome but not in Firefox and IE. Why is that and how can I resolve this issue.I am using Firefox 3.6.11 and IE 8.0.XX.Also I tried to open a new window using <a href> option with the same URL and its working but the only problem is that I want to pass my next JSP an argument which is only possible with function or script.
I googled it but couldn't find much information except that there is some security problem. For that I have disabled the 'Pop up Bloker' on both Firefox and IE but still not working.When I click my button there is no activity with 'Firefox' but IE gives me error as follows;
Message: Invalid argument.
Line: 74
Char: 2
[code]....
View 3 Replies
View Related
May 6, 2011
i am using a link on clicking which a new pop up window should open like
<a href="#" onclick="Popup(f_date,f_date1)"> Add more</a>
function Popup(date,date1)
{
var f_date=document.getElementById("f_date").value;
[Code]....
it is workin fine in ie6 and ie8 but in firefox on clicking it nothing is happening.
View 1 Replies
View Related
Oct 20, 2009
My code below is working in IE but not Firefox:
[Code]...
View 5 Replies
View Related
Feb 25, 2010
every time i try something it doesn't work for me :( god why is this javascript so hard to make it work... anyway, i just followed the guidelines to pass values from one page to another using ? and it simply, like always, DOES NOT work .
<HEAD>
...
...
<script type="text/javascript">[code].....
View 7 Replies
View Related
Dec 1, 2009
I start outside of the external JS file by: reviews.init(); reviews.initialiseContent('comment'); This loads my data and loads + sets the comment tab as default. My problem is that in the external JS file (shown below) the loadTabs variable will not allow me to pass it a variable: contentDiv.onclick = this.initialiseContent; Whenever I pass a variable here it errors, am I setting this up correctly, should I be using prototype for my this. variables? Interested to hear back on if this structure of code is the right way to go about this and also how I can pass a variable in this way :)
[Code]....
View 2 Replies
View Related
Dec 24, 2005
I am trying to open up a new window and then get the current url/location
back from the (win_1) window and display the url in an alert box.
Here is the code I am using :-
<script type="text/javascript">
var mywin_1 = open ("http://www.anysite.com/index.htm", "win_1",
"height=640, width=820, left=200, top=0, scrollbars, status, location");
var temp = mywin_1.location;
alert (temp);
</script>
Where am I going wrong?
View 2 Replies
View Related
Nov 13, 2011
I'm using window.showModalDialog but having an issue trying to set the parent window(main browser). I open modal window A which is then opens modal window B, top of modal window B onload I do window.opener.close()". My issue now is when i'm finished with B I set parent window(main browser) to a new url with window.opener.location. So my problem is modal window A the parent has been closed so window.opener.location will not work.
View 3 Replies
View Related
Jun 9, 2011
I tried this code but i got an error on the it said Syntax error code...
View 6 Replies
View Related
Feb 10, 2010
The following code is working fine only in IE. when i click on the calender img, calender window is not coming up in firefox/chrome.
[Code]....
View 8 Replies
View Related
Feb 6, 2010
I am triggering a Javascript based popup in which I want the URL location box hidden. I can get it to work fine in IE (I am using IE8) but the location URL box always shows in Firefox (I am using FF3.5). The code I currently have is below...
Code JavaScript:
var win1 = newWindow('{0}', null, 700, 'location=0,scrollbars=1,resizable=1', 300);
Is what I want to achieve not possible in FF based browsers?
View 4 Replies
View Related