Launching Another Site Via A Pop Up

Apr 7, 2004

im launching a new site that is the same topic as another site i have

i want to launch the new site as a pop up or pop under from the established site.

What code would i use to generate it so that this only happens per unique visitor and not per page impressions.

View 3 Replies


ADVERTISEMENT

Launching New Page With Options?

Feb 2, 2010

What I'm after or trying to do is simply create a script to launch a new page after a X amount of time, like a popup. But I need the new window to have the following options like no toolbar or scroll bars etc... This is the code I've been trying to manipulate for my purpose and just can't get it right meaning it doesn't work at all in fact I haven't even been able to get the timer part worked in since I couldn't get the launch part working..... I've made a web app using asp.net & vb.net and need a launch page so I don't have any toolbars or scrollbars etc....

<html>
<script>
var customerWindow;

[code]....

View 10 Replies View Related

Functions Are Not Launching When Called / Why Is So?

Jan 11, 2010

I don't know why this won't run. maybe i have the body that calls the function "show_prompt()" and "byebye()" wrong? [code]...

View 3 Replies View Related

JQuery :: Launching Pop Up Without A Link?

Oct 7, 2009

I am using a jQuery plugin called simpledialog. It normally launches with a button click or a link click, but I want it to launch conditionally instead. I'm doing some javascript checks and if statements and if they go thru, I want to launch the pop up, without anything being clicked or anything. Essentially as soon as the browser loads the web page. I couldn't really find any plugins that support this feature, so it there maybe a workaround?

View 1 Replies View Related

JQuery :: Button Launching A File Dialog ?

Apr 18, 2011

I try to open a file chooser dialog when pressing a button.

Here is what i have up to now.

I took that example here [url]

View 3 Replies View Related

Jquery :: Launching A Floating Iframe Without Yui / Plugins?

Jun 17, 2011

One of the features of a site I'm working on is a button similar to the Facebook "LIKE" or Twitter "Tweet" [really exciting stuff to help with, right? ]

As such I need to be able to open an iframe as a layer on the page but can't load up a framework given the weight and potential for conflicts. The goal here is to be as light as possible while also avoiding conflicts. The page is multi-part so a simple layer won't do, it has to be a full fledged iFrame with the ability to fade the underlying window and close it down while also floating over page elements, drop downs, even flash.

Colorbox-min would be an ideal solution but the dependancy kills it. I do pretty well with frameworks but on my own am a JS novice. In a world full of ready made scripts,

View 5 Replies View Related

Launching A Centered Browser Window Via A Form-button?

Feb 12, 2010

I am trying to launching a centered browser window via a form-button using the following code...

<button type='button'
onClick="window.open('myURL','testwin','width=400, height=400, left=(screen.availWidth-400)/2, top=(screen.availHeight-400)/2'); return false">
Test button</button>

The new browser appears the correct height and width, but the left and top clauses are ignored.Am I being too ambitious trying to make this code in-line? Is there any other syntax I should use or should I give-up and call a function instead (I would rather not if I can avoid it)?I am using Firefox 3.0.17 (latest), but the same effect happens in IE7.

View 1 Replies View Related

Launching Centered Browser Window Via Form Button

Feb 12, 2010

I am trying to launching a centered browser window via a form-button using the following code...
<button type='button'
onClick="window.open('[URL]','testwin','width=400, height=400,
left=(screen.availWidth-400)/2, top=(screen.availHeight-400)/2'); return false">
Test button</button>

The new browser appears the correct height and width, but the left and top clauses are ignored. Am I being too ambitious trying to make this code in-line? Is there any other syntax I should use or should I give-up and call a function instead (I would rather not if I can avoid it)? I am using Firefox 3.0.17 (latest), but the same effect happens in IE7.

View 2 Replies View Related

Can JS Suss Out "on-site" Vs Off-site HTTP Requests?

Dec 5, 2006

this may be more of an "html" issue, but I'll wing it.

i've got a multi-language site, where the home-page of each language group
features a link to a popup window that offers background info on site
management. the popup is fired by a javascript function, when they click
the site management link. there's also a "window close" function button so
they can nuke it as they please.

now, oddly, people who search for my site in the chinese language on google,
are sent directly to the site management popup window, which of course,
opens in their "full" browser window, and which also has no links back to
the main site, because it's meant to open only as an "accessory" to the main
site.

my question is this: is there any way, with Javascript, that I could
determine if they arrived at this window from "off-site" (ie, a google
search), and therefore offer such "off-site" visitors a link back to the
principal site, a link that would be hidden for visitors who clicked the
popup window from my own site?

View 2 Replies View Related

Posting Data From A Form On My Site To A Form On Someone Else's Site:

Feb 25, 2006

Basically, I registered for a free board at one of the various sites because my server doesn't support .cgi scripts. I want to know if there is a way to have the data from a form on my site post to the board site -A user would fill in my form, click submit, and a new post would appear on the board site -as if they had entered it there.
If you can point me in the right direction, I would be grateful. Here is my thinking.

A) I can't locate the script that they use to perform a "submit"; so I thought I might enter their <head> data (as far as xmlns, href, etc) in my <head>; that my website might call up their script files, css sheets, etc.

B)I could code my own Javascript function to send my form data to their site. If I knew how to simulate a mouseclick on someone else's site, I could have the script "click" there, paste the data, and hit the submit button. But I don't.

C) I could size their site down to the form itself and put it in a frame on my page

Option C is clearly easier, but I would prefer option A or B. I have time and will happily do the research myself; provided that I know if approach A or B is even feasible.

View 1 Replies View Related

Print Site

Jul 23, 2005

How can I print a web-site without site number and url?

View 6 Replies View Related

Cookies To Another Web Site

Oct 25, 2005

Got a client with three web sites. I want to be able to pass cookies between these sites, so far no luck. Tried:

document.cookie = name + "=" + escape (value) +
((exp == null) ? "" : ("; expires=" + exp.toGMTString())) +
((path == null) ? "" : ("; path=" + path)) +
("; domain=.yorktest.com") +
((secure == true) ? "; secure" : "");

Code:

View 1 Replies View Related

Get Info From Another Site?

Feb 22, 2010

I'm making a fansite for a game called RuneScape and I'm a bit stuck on this part.

What I need for my website is, a page that will have the prices (min, middle, and max) of things from this [URL] or other items, which will be chosen later on.

Here are two example sites that I am wanting to ... do the same thing as them.

First Example [URL] Second Example [URL]

View 2 Replies View Related

Scroll Box To Top For PHP Site

Aug 22, 2011

Any script that adds a "move to top" box for our .php site similar to the one we have on our blog site: [URL]

View 5 Replies View Related

Site Not Working In IE/Win

Jul 11, 2006

My site does not work in IE/Win

I really don't know where to look for the problem because it works in all other browsers.

Any ideas... I've looked at all the css and html and can't find a fault, so I can only guess it's the javascript????

View 1 Replies View Related

Web SQL Spec On The W3C Site?

May 11, 2010

I was looking at the Web SQL spec on the W3C site (here)the example code

Code:
function prepareDatabase(ready, error) {
return openDatabase('documents', '1.0', 'Offline document storage', 5*1024*1024, function (db) {[code]....

I don't understand how/why prepareDatabase is set twice.Is there a term for this? I can't for the life of me think what it is. I know I've seen it before though.

View 3 Replies View Related

Blur Whole Site Except One Div?

Apr 21, 2009

I wondered if there was a way to blur my whole site except a popup-div when a link is clicked - just like lightbox fades out the page, just with a blur effect instead:[url]...

View 2 Replies View Related

Can't See Assign Site

Dec 5, 2010

[code]...

i want to see if i click Google button

View 8 Replies View Related

Add Stopwatch To Site

Jun 7, 2011

I want to add stopwatch to my site.Any free JavaScript please share here.

View 5 Replies View Related

Editing HTML From Within A Web Site

Jul 23, 2005

There are times that I am using another person's computer who has no
knowledge of updating HTML and does not even know if he has the
necessary programs to do the FTP.

I may see a minor problem with my site and would like to change it on
the fly. What I would like to know are the answers to the following
questions.

1. Is there any way to display unformated HTML within a web page
without using the browsers source facility?

2. Is there a way to modify it? Maybe showing it in a form textarea.

3. Is there a way for javascript or a form to do an FTP back to the web
site? This would obviously require id and password.

View 3 Replies View Related

Keeping A Menubar On Top Of The Site

Jul 23, 2005

I was trying to "pin" a menubar to the top of a site. It should allways stay on its absolute position. Especially when the user scrolls the page...

I did like this:

<div id="object1" style="position:absolute; visibility:left:50px;
top:50px"> MENU </div>

called from a timer:

document.object1.style.top=50;
OR
window.document.object1.style.top=50;
OR
document.object1.top=50;
OR
window.document.object1.top=50;

none of them worked...now what?

View 4 Replies View Related

Javascript Site Scanner?

Oct 27, 2005

Is there any program out there that can scan a website for javascript errors? Just trying to fix some EXTREMELY minor problems on a very large (20,000 pages) web site...

View 1 Replies View Related

PCName From Users Who Get On Site

May 18, 2006

Is it possible with javascript to retrieve somebody's Computer name when he
connects to a webserver? (So the webserver receives the computername of the
client).

View 6 Replies View Related

How To Detect Navigating Away From A Site

Jun 19, 2006

I have a web application that has basic authentication turned on (IIS).
What I would like to accomplish is detect whether user is navigating
away from the site or simply going to the different page using
JavaScript. I am aware that it is easy to detect where you came from
(referrer), but I haven't been able to find a way to where you're going
to. I did my fair amount of research online, but I couldn't find a
solution for this.

However, my boss told me that he has seen a website that detects the
fact that you're navigating away from your site. Does anyone know
anything about this?

View 7 Replies View Related

How To Display Other Site Contents

Sep 6, 2007

how to display other website contents using javascript aside from iframe?

View 3 Replies View Related

Add Site To Trusted Sites

Jul 20, 2005

The next step after Grant Wagner's simple solution to my "Get computer name" thread, is to automatically add the web application's site to the list of trusted sites in IE.

Obviously, the user should get a popup first that says "Do you want to add this site?"

I've looked through the Wscript doco in MSDN, but can't find a way of manipulating this browser setting.

I'd expect it to be something like "setHomePage" - namely "addTrustedSite".

Is it possible?

View 12 Replies View Related







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