Opening Windows

Dec 17, 2006

I have a company web site where I wish to open a search window with javascript. I do know and have used the window.open( for this.

The window that is opened provides a search function an returns a list of results as hyperlinks. I then want the user to be able to select the link from the list and when the link is clicked the 'poped' search window closes and the hyperlink reference be displayed in the window which referenced it in th efirst place.

View 3 Replies


ADVERTISEMENT

Opening New Windows Using JS

Mar 23, 2007

Hi I managed to find a way of opening a PDF in a new window using JavaScript.

I warned the user beforehand and opened the new window at 80% height and width of the original window to show it was a new window.

However I can't seem to control XLS, DOC, RTF documents. These are the issues:

1. Firefox: They always seem to open in a new window anyway.

2. Firefox: Firefox opens a blank window as well when the JavaScript is used.

3. IE and Firefox: I can't seem to control the height and width

View 1 Replies View Related

Opening New Windows/Tabs

Nov 18, 2006

How can I make this script I generated with HomeSite, open links in new
windows/tab instead of the same? ....

View 4 Replies View Related

Opening 2 Separate Windows ?

Feb 18, 2011

I am opening a new small window through javascript.

Here is the code:

But on the same page I have another link for a new window which is essentially the same code:

As you can see in the red text, one link should open map.asp and the other should open pofull.asp... but they BOTH open in pofull. So I have tried to change the function name for one of them but then it doesnt work at all.

I have tried everything to separate the two scripts but nothing has worked.

View 2 Replies View Related

Opening Multiple Windows ?

Nov 3, 2010

I have a JavaScript that allows you to open 5 additional windows when you click on the button. It works properly when using Mozilla, but when you use IE7, only 1 window pops up not 5.

Code:

View 3 Replies View Related

Opening 2 Windows For 1 Click In IE6

Jul 20, 2006

I have problems with opening new windows in IE6, in Firefox and Opera it is working fine, but IE6 gives warning and open only one link. Code:

View 1 Replies View Related

Opening New Browser Windows

Feb 26, 2003

I have a question about opening new pages when a link is clicked on a webpage. What I want to happen is this:

On the main webpage, I would like to have links to other websites. For example:

Link 1
Link 2
Link 3

Now, if I was to click links 1,2 and 3, I would have 4 browser windows open: The window containing the original webpage, plus the 3 windows that were opened by clicking on the 3 links. (I am using a href="www.,,,,," target="_blank"></A>)

Now, what I want to happen is this, I only want the mainpage to have ONE child window so that at any given time, there will be at most 2 browser windows open, the main page window and one child that is opened by clicking on a link. If I click on Link 1 followed immediately by Link 2, I don't want 2 child windows to pop up. What I need to happen is when I click Link 1, it needs to open a window. When I click link 2, the browser window that contains the webpage from link 1 now needs to show the webpage that from link 2. Is there a way to do this using javascript window.open? Code:

View 1 Replies View Related

Keep Pop-up From Opening In Same (opened) Windows?

Jan 22, 2011

I have a function that opens a new window when the link is clicked. The pop-up window contains a customer's info. Each time I click the link, my pop-up is opening in the same (popped-up) window, but I'd like it to create a new window each time.

View 1 Replies View Related

After Login Opening App In A New Windows?

Jan 5, 2010

i m making a web app. after login i want the app run in a 1280*800 size window. i saw many tuts on how to make a popup window but what i don't get it where should i post the code? in the login page or the main home page and so on?

View 3 Replies View Related

Opening Windows: Combining Two Functions?

May 19, 2010

Doing a bit of window-opening: the idea is, when a link is clicked, it selects a random one from an array of urls, and then opens it with certain toolbars missing. Got a script for each part, but not sure how to combine them: 'location' seems to be talking about different things in each script.

the random script:

var single = new Array ("a.htm","b.htm","z.htm")
function choose(){
window.location=choose[Math.floor(Math.random()*single.length)] }

[code].....

View 2 Replies View Related

Opening Windows On Secondary Monitors

Oct 15, 2010

I am working on an application (for internal company use) that is meant to be viewed over three monitors. I'm wondering how to accurately position windows on the secondary and tertiary monitors. If they all have the same resolution (say 1280x1024), can we assume that the second monitor begins at 1281, and the third begins at 2561?

View 2 Replies View Related

Opening Multiple Windows Or Tabs

Aug 4, 2011

I am currently designing a website for our public library. I have added a card catalog search bar on the side of every page. Our catalog software company has supplied the code. After embedding it, I previewed each page to make sure it was working properly. At the time, it worked fine. Since then, I have added other elements to the homepage such as a Twitter feed and a Flickr slideshow. Now, when I attempt to search in the catalog search bar on the homepage, it opens two tabs, but only in Firefox.

Our IT person from the software company suggested I make a copy of the page and strip the code down to see what the problem is. After doing this, I have made no headway. Even with the catalog as the only code left on the page, other than text, it still opens two tabs.

[Code]...

View 3 Replies View Related

Opening New Windows From Sites With Audio / Video Files?

Apr 13, 2010

My computer seems to have problems with its javascript when opening new windows from certain sites that are either audio or video files. I simply have not got a clue where to begin.

View 3 Replies View Related

Open Windows Under Current Windows?

Apr 6, 2010

below is clickunder code , but it open under windows when visitor click everywhere on the pagei need it be speacial for links , whenever visitor click on speacial link , it opens windows

<SCRIPT LANGUAGE="Javascript">
function PopShow3() {
CookieTest=navigator.cookieEnabled; if(CookieTest)

[code]....

View 5 Replies View Related

Child Windows Can Not Access Window.opener When Multiple Child Windows Are Open

Jul 23, 2005

I have a parent window that pushes a new window object onto an Array
with the following code :

OpenChild()
{

//totalNumWindowsCreated is global

totalNumWindowsCreated = totalNumWindowsCreated + 1;
childWnds.push(window.open(link, "child" +
totalNumWindowsCreated,"dependent"));

..
..
..
}

This pops up a new window with every call. In the child window I call
a parent function onbeforeunload, appClose() :

function appClose(){

if (window.opener && !window.opener.closed){
window.opener.CloseChild(getQueryString("application"));
}}

This is in my frameset tag of the child code :

<frameset ... onbeforeUnload='appClose()'>

The window.opener.CloseChild() function is called perfectly when I have
one child window open, but as soon as I create another child window
both of the open child windows don't ever call it. They do both go
into the onbeforeunload appClose() function, but do not call the
window.opener.CloseChild() function inside of this routine.

Anyone have any ideas why when I have two child windows open I can't
access the window.opener functions?

I have tried taking each new window out of the array and used the
following code in CloseChild() :

CloseChild()
{

//win and totalNumWindowsCreated are both global

totalNumWindowsCreated = totalNumWindowsCreated + 1;
var win = window.open(link, "child" +
totalNumWindowsCreated,"dependent");

..
..
..
}

View 1 Replies View Related

Opening New Tab With Js...?

Dec 15, 2003

I heard elsewhere that this may not be possible; still, I thought I'd check.

I'd like to be able to open a new webpage in a new *tab* if the browser allows for it, otherwise, just a new window.

Possible?

View 3 Replies View Related

Opening A Window

Jul 23, 2005

I am using the following code to display an image in a seperate
window.

<form>
<input type=button
onClick='window.open("image1.jpg","","width=260,height=260,resizable=0,border=0")'
value=Shhow Picture'>
</form>

I want the window to be the exact size of the image so I set the width
and height of the window the same as the width & height of the image.

The code works, however there is a white border on the top and left
side of the image. If I add 20 to the width and height of the window
then there is a white border around the whole image.

Is there anyway to have the window the exact size of the image,
without this white border? I know there is probably a simple solution,
but I'm a beginner at JavaScript.

View 2 Replies View Related

Opening New Window

Sep 23, 2005

I have a form on a page and when the form is submitted it should open a
new window and post the content to it.

When the script being posted to is a html page, then this works fine,
but when the script being posted to produces an svg graphic, then there
is no 'view source'. Its almost as though the opened page headers are
already set for html and doesn't like the svg xml schema.

Here is the code:

document.report.action="graphic_rpt.cfm?RequestTimeout=700";
var mywin;
if ( !mywin || mywin.closed )
{
mywin =
window.open(mycgi,'view_report','width='+mywidth+' ,height=425,top=50,left=0,scrollbars=yes,toolbar=y es,resizable=yes');}
}
document.report.target = 'view_report'
document.report.method = 'post'
document.report.submit();
mywin.focus();

View 1 Replies View Related

Window Not Opening / What To Do?

Aug 28, 2009

I am confused as to why a window will not open if i include certain code. if i use code...

View 8 Replies View Related

No Links Opening In New Tab

May 1, 2009

I found a script for drop down menus on the web. I use it on my homepage (www.k66t6-mf.com). The script works fine. However when you click on the links the pages open in a new tab or window. I do not want this. Does anyone know how I can prevent this from happening? (I know there is a lot of code, and I'm sorry about that).

[Code]...

View 2 Replies View Related

Opening New Tab On KeyDown?

Apr 6, 2010

I want to open a new tab "[URL]" when the user presses a key. How can this be done?

View 3 Replies View Related

Opening New Window (NOT New Tab)

Jul 13, 2011

is there a way in HTML or Javascript to open a new window and force it to be a new Window, not a new tab? and also avoid popup blockers??

View 7 Replies View Related

Opening Up A Webpage Within A Div Tag?

Sep 9, 2011

I'm trying to open up an internal link from my leftnav div into my content div. I used the following JS code from my book but im not quite sure how to make it all work.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

[code]....

View 3 Replies View Related

Opening A New Page On A Div?

Nov 2, 2010

I am designing a tabless web page.The page contains 2 div sections.One is for menus and other is to display the contents of the page by clicking the menus.I don't want to use frames and iframes.Is it possible to do it using the div tag? The code I had used is show below.

<html>
<head>
<title>Example</title>
<style type="text/css">
div.left {

[Code].....

View 2 Replies View Related

Opening A New Window

May 8, 2001

I'm pretty poor at Javascript, but does anyone have any ideas on how I can get a new browser window to open behind the current window when it is opened.

View 7 Replies View Related

If Statement For Opening Url's?

Apr 15, 2010

I have an html form that calculates a square footage (length x width)

Code:
<center>
<form name="frmOne">

[code]....

View 7 Replies View Related







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