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
ADVERTISEMENT
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
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
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
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
View Related
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Jul 23, 2005
With ref. to MS IE, when I use window.open with the usual sizing and
'toolbar=yes', 'menubar=yes' the target URL opens in a new window -
but without an address bar.
'addressbar=yes' does not seem valid. Can someone please tell me how
to proceed?
View 3 Replies
View Related
Oct 13, 2005
When creating a new window and specifying ANY features (on or off) at all like such:
<A HREF="javascript:void(0)"
onclick="window.open('NONE.php','welcome','toolbar=1,location=1,directories=1,status=1,menubar=1,resizable=1, scollbars=1')">
Open a new window</A> the new window does not have scrollbars even though scrollbars are necessary for my document (vertically, at least).
This problem occurs in Firefox and Internet Explorer 6. The problem does NOT occur if there are no features are specified.
View 3 Replies
View Related
Jul 23, 2005
I've got this row of images (in the end there will be more rows of pics
as well). When a user clicks on the image, I want a new window to open
with a larger version of the image. I want that new window to be
customized to the size of the new larger image. Also, when users go
back to see other images in their larger size, I want the new window
(assuming they never closed the first one) to come back to the front.
I've only gotten as far as getting the larger images to open in a new
window at a set size in the function. I thought I could just make
specific scripts for each image, but that would be cumbersome to say
the least....
View 1 Replies
View Related