Why This Custom Open.window( ) Function Works On Some PCs Only

Jul 23, 2005

I am studying Javascript to custom my yahoo estore, I need to open a custom sized window in a new browser , I tried the following script on 3 different PCs running XP
pro. IE 6, it worked on one and did not work on the other two. Code:

View 3 Replies


ADVERTISEMENT

Script With Window.open, Script Works In Seamonkey But Not In IE 8?

Feb 10, 2010

I have a script that works in seamonkey(my html editor) but when I use it in IE8 it says errors happen.Here's the code (the first line is on line 7 of the html file):

<script type="text/javascript">
function enlarge(imageNum)
{

[code]....

View 4 Replies View Related

Using Var Or Function With Window.open?

Aug 7, 2009

Here's my code ... what I'm trying to do is use the var url in the window open statement...

Code:

// This is our javascript, which will pop up our message
// in an alert box.
function myfunction() {

[Code].....

View 2 Replies View Related

Link To Window.open Function

Jan 3, 2007

I am trying to open a document or window from

<a href="#" onclick="javascript: Open_Win();"><img src="images/Touching-God-Fast.jpg" alt="Touching God Fast" width="320" height="65" border="0"></a>

Where the function Open_Win() is:

function Open_Win()
{
window.open("http://www.xyz.org/Touching-God-Fast.html","Touching God Fast","scrollbars=yes, statusbar=yes, height=500, width=850");
}

Works great on a Mac but under IE in windows xp it states that there is an error on the page. What am I doing wrong?

View 1 Replies View Related

Window.Open Function Problems

Mar 26, 2003

I'm redesigning my webpage and thought it would be a good idea to have windows popup if someone had a question about terminology. So basically, I wrote a small function that was supposed to popup a 400x300 window centered towards the top left of the screen with some basic parameters...
this code is inserted into the head

Code:

<Script Language="JavaScript 1.1" type="text/javascript;version=1.1">
function jargon(url){
var screenw = 800;
var screenh = 600;
screenw = screen.width;
screenh = screen.height;
var mywin = window.open(url, 'jargon', 'left=screenw / 4, top=screenh / 4, width=400, height=300, toolbar=0, menubar=0, resizeable=0, status=0');
}
</script>
(the screenw and screenh are meant for older browsers)
which is meant to be embedded in the code like....

Code:

<a href="#" onclick="jargon('../jargon/php.php');">PHP</a>
But whenever I try this, it just uses the # link and nothing happens.

View 3 Replies View Related

How To Open Link (With Function) In New Window

Jan 1, 2011

This is the link (and I have a function called check_group):
Code:
<a href="javascript:viod(0)" onclick="check_group('<?php echo $codart ?>','<?php echo $codfam ?>')"><?php echo $gname?></a>
I have a function called check group. I want to open that link in a new window.

View 2 Replies View Related

Open Links In New Window With External Function

Aug 10, 2010

turning the following inline code:

<a href="http://www.bing.com/" name="bing" onclick="return !window.open(this.href)">Bing</a><br>
<a href="http://www.lycos.com/" name="lycos" onclick="return !window.open(this.href)">Lycos</a><br>

[Code]....

into an external javascript function that will do the same thing (open all links in a new window individually if javascript is enabled, without destroying links in html for if javascript is not enabled).

View 4 Replies View Related

Function To Open A New Window With Variables Attached To Url?

Sep 23, 2003

I'm figuring this will need to be done in a function. I'm building a page builder with 2 fields, a textbox called 'title' and a textarea called 'text' (imaginative huh!).

I want to have a preview facility. I've built the preview page, all I want to do is have a javascript button that passes the value of those two text fields to this preview page in the querystring. Is there a way using variables to pass this through?

View 4 Replies View Related

Jquery :: Open URL In New Tab / Window With Click Function

Jan 13, 2011

I have the following code:
Code:
$(".buy_icon").click(function () {
window.location = "[URL]"
});
Which loads the URL in the current browser window when the div (buy_icon) is clicked. How can I load the URL in a new tab or window?

View 2 Replies View Related

Window.Open Function Not Work In Google Chrome

Nov 16, 2010

I am really tired with Chrome, one of my window.open() Stuff work fine in FF and Opera in Fedora O.S. But Chrome Did not, my code is like:

Code:
<script type="text/javascript">
function getpage(id, type){
$.ajax({
type: "POST",
data: "key="+id,
async: false,
url: "<?php echo site_url(); ?>/server/precp/"+type,
success: function (msg) {
window.open("<?php echo site_url(); ?>/server/cplogin/"+msg, "autologin");
}});}
</script>

And it call in another JavaScript function like:
Code:
function doKeyup(id,e){
if(e == 13) {
var cp = $("table#serverdata tbody tr#container_tr.row_no td:nth-child(7) a#cp").html();
var dc = $("table#serverdata tbody tr#container_tr.row_no td:nth-child(7) a#dc").html();
if(cp != null || dc != null ) {
var firstId = $("table#serverdata tbody tr#container_tr.row_no td:nth-child(1) input[type=checkbox]").val();
}if(cp != null) {
alert("Enter here");
getpage(firstId,'cp');
return false;
}

And it firstly call from onkeyup as :
Code:
<input type="text" name="find_text0" id="find_text0" autocomplete="off" <?php if ('B' == $sb_pos) { ?> onfocus="document.getElementById('find_text1').value='';" <?php } ?> onkeyup = "return doKeyup('0',event.keyCode);" />

View 4 Replies View Related

How To Make Invisble Popup Using Window.open Function?

Feb 5, 2007

We want to load the popup window when the page is loaded but this popup window must not be visible to the end user. We need this to do some processing in the popup window which is hidden.

Is this possible? Is this correct/valid?

View 1 Replies View Related

Window.open Not Working From Inside User Defined Function

Jul 20, 2005

I'm trying to use window.open from inside a user defined function, and
it's not working.

Mountain Man
============

<script>

function openFootnote(contentURL) {
window.open('contentURL','footnotes','height=180,w idth=160');
}

</script>

I've tried calling on the function 2 different ways, as shown below.
Nothing happens either way.

<a href="javascript:(void)" onClick="openFootnote(fn1.html);">...</a>

<a href="javascript:(void)" onClick="return
openFootnote(fn1.html);">...</a>

View 2 Replies View Related

Code - Void Window.open - Link Would Open In The Same Window?

Feb 7, 2009

I have this piece of code which is opening link in new window:

How to change this code so link would open in the same window?

Probably I should change this part: javascript:void window.open

View 1 Replies View Related

JavaScript Popup On Window Close: Works Great On IE, Works Terribly On FF

Dec 13, 2006

I'm just restating my "site abandonment" post but with a clearer title as I realized it probably only made sense to me and me alone.

I have window that pops up with our commerce system. I have it set to pop up a window via JavaScript if the visitor quits early in the process (abandons the commerce system before completing all of the steps. The new popup is just a customer survey ("why are you leaving, is there something else we can help you with" etc. etc.).

Here's the problem, it works fine in IE, but in Firefox, anytime the page in the original commerce window is changed, refreshed or advanced to a new page, the survey popup window is called rather than just on window close.

Again, here's the two JavaScript routines that handle clicks on the graphical close button and on the window 'X' close button. Code:

View 9 Replies View Related

JQuery :: Selector Works With Custom Tag In Namespace <dl:object>, Including In IE?

Jan 26, 2011

Actually the selector works in this form:

$objects = $("dl\:object",contextelement)

but not in this form: $(element).children("dl\:object").I don't care that it doesn't work in the second, because I only need one time access, since I replace these custom elements with valid html using javascript, as soon as the page loads (sort of like xfbml I guess).My concern is that it DOES work even in IE, which only returns a tagName of "object" from <dl:object>. (given the following html attribute: <html xmlns:dl>). So I'm suspicious. I've tried following the code that matches the selector, but I can't do it, it's too complex for me to follow in a reasonable time.

View 1 Replies View Related

Links That Uses Window.open Then Open A New Designated Window

Jan 17, 2012

I have a problem on the links on my page im working.sorry guys still a noob and my english is not that good. :b. my question is like i have a list of packages of food. [link_a] [link_b] [link_c] and i have a function that i put in my head tag:

function linkA()
{
window.open('link_a.html','link','width=300,height=200,resizable=yes');
}

now i can go to linka.html by click my link <A HREF="javascript:linkA()" >link a</A> is there a way i can have one functions that can open a link depend on what page .when it clicks then go to its designated page or i have to stick on writing function for linkB ,C,D and so on.

View 7 Replies View Related

Open A Link On The Same Window Using Window.open Or Any Other Method?

Oct 19, 2011

How to open a link on the same window using window.open or any other method in JavaScript.

View 2 Replies View Related

Child Window Close Event - Opening Another Link In A Separate Window Using Window.open()

Jan 29, 2010

I have a HTML and I am opening another link in a separate window using window.open() . The child window is something like 'http://yahoo.com' which is out side html. I need to refresh the parent window when the child window is closed.

View 4 Replies View Related

Open In New Browser Window (like With Target="_blank", Not Window.open)

Dec 1, 2011

Code: window.location but have it open in new browser window (like with target="_blank", not window.open)

View 7 Replies View Related

Thru Window.open Open A Word Document In Print Preview Mode

Jul 23, 2005

Through window.open or window.showmodaldialog, I want to open a word
or excel document in Print Preview mode. Bcos I don't want the user to
make any changes or save it but the user can ONLY VIEW OR take a print
out.

View 1 Replies View Related

Window.Open In FireFox - Click Very Quickly - Multiple Windows Open

Nov 16, 2009

I'm using an <A> tag with an onclick event to open a window with JS (window.open)... In FIREFOX, if I click very quickly, multiple windows open. Not a problem in IE.

View 8 Replies View Related

Window.open - How To Open A Local File (xml) With Firefox

Apr 2, 2008

my file is located at c:AdminFiles.xml

i tried the following ways

window.open("c:/AdminFiles.xml",'HeavyXml');
window.open("c:AdminFiles.xml",'HeavyXml');
window.open("c:\AdminFiles.xml",'HeavyXml');

in the above i'm getting the following error: "Firefox doesn't know how to open this address, because the protocol (c) isnt associated with any program"

window.open("file:///c:\AdminFiles.xml",'HeavyXml');

the last attempt give to respond at all...

View 5 Replies View Related

Window.open() Doesn't Open New Window In FF, Only New Tab

Feb 14, 2011

window.open() doesn't open an entirely new window in FF3.6, just a new tab

Edit: Yeah, ok, so if i specify a size smaller than the current standard window, it'll be forced to open a new window. but what if i want a new standard sized window to open entirely?

View 4 Replies View Related

Script To Close Old Window And Open New Window With New Link And Specific Size

Jan 29, 2006

I need a script that will open a new window (popup / new link) in a specific size, but will also close the old window (where the popup came from). I know the popup window is easy but finding a work-able close window script as the new window is opened is impossible!!

View 3 Replies View Related

Child Pop Up Race Condition Using Window.open Need To Detect Window.onload

Nov 22, 2011

I am trying to pop up a window and then do stuff(set flags) when the content of the new window is done loading. For this I am trying to detect the window.onload of the pop-up child window but so far I am unsuccessful. I believe my problem is that the URL of child window is on different domain, than the one of the opener(parent) so that the window.onload is not being called. Though this may change, at the moment I do not have access to the code for the page I'm opening up in the pop-up. Im pretty new to web development.

[Code]....

View 3 Replies View Related

Open A Popup Window From A PHP Site And Pass In Some Parameters To Use In The Pop Up Window

Sep 23, 2010

I need to open a popup window from a PHP site and pass in some parameters to use in the pop up window. I have the params in an input box and need to get the val of the box into a param and pass it to the new popup window. All pages are local and in the same folder. The id of the input box is 'ddutykey'. The name of the new window would be showduty.php if possible.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved