scryoko
Jan 11 2006, 04:20 PM
I know of another simple way to make a window pop-up so you can suggest to your visitors to make your site their homepage. CODE function popUp() { alert("Please make my site your homepage!"); }
You just put the code above together with your other script code in the <script> tag -- that is within the <head> tag. How it works is that the "alert" function will pop up as an alert box and whatever message you want your site visitors to see first when they get to your site will be displayed in small pop-up window (AKA the alert box). In between the quotations within the parenthesis is what will appear in the alert box. I just put "Please make my site your homepage!" as an example but you can change that part of the message to whatever you want it to be. And now, in the body tag, have the following: CODE <body onload="popUp()">
This code is as oveture explains. It will call the function called (well, in this case) "popUp()" and "onload" (which means that when your webpage loads), the function being called will be executed. So... if you don't have the "onload" function in the <body> tag, the script from how to pop-up a window will not work. Okay, I hope that helps you out. A really simply code and I believe it fits what you are asking for. ^__^ Regards, -- scryoko
Comment/Reply (w/o sign-up)
Nexmon
Feb 12 2006, 11:19 PM
It depends on what type of prompt/alert you want. For example, if you want to have a pop-up on a page when someone enters it, use this code: CODE <script language="JavaScript type="text/javascript"">alert("Place your message here!")</SCRIPT> Or you can get one that pops up when someone leaves the page: CODE <body onunload="alert('Place your message here!');"> Also, there is one when a visitor moves their pointer over a link: CODE <a href=""onMouseover="alert('Place your message here!')">Put the text you want to be visible here.</a> Or if you want something more cool, make one that says the time and date upon entering a page: CODE <script language="JavaScript" type="text/javascript"> document.write("Having a great day?") document.write("<BR>") document.write("Today's date is ",Date()) </script> Finally, you could use one that comes up when you enter and leave a page. CODE <body onload="alert('Place your message here!');" onunload="alert('Place your second message here!');">
Comment/Reply (w/o sign-up)
warbird
Feb 14 2006, 01:56 PM
Can't you make a question window with Javascript? I'm not an expert on Javascript (I actually don't know anything about it), but I know it can be done in VB, problem is, can it be done in Javascript? Something like this: CODE if(!isAdded) { // use a var from a cookie to check wether your site is already added to favorites if(question("Do you want to make my site your homepage") { // Ask to add this site window.external.AddFavorite(location.href, document.title); } }
I'm almost sure this isn't correct javascript and I don't know how to use cookies, so plz rewrite this code, but isn't this a nice idea instead of the popup? -=jeroen=-
Comment/Reply (w/o sign-up)
twitch
Feb 14 2006, 05:51 PM
Grrr. You're the type of person we all don't like. j/k. NEVER EVER EVER EVER HAVE POP-UPS ON YOUR SITE TO ASK PEOPLE TO DO SOMETHING. If they want to make your site part of their favourites, then they will do. If they want to make it their home page, then they will do. If they don't have the technical knowledge, then use simple inline javascript as well as a link to achieve the effect. It is possible to create in document pop-ups, using AJAX, but I aint telling you how, as I do not know myself.
Comment/Reply (w/o sign-up)
FeedBacker
Sep 26 2007, 09:01 PM
I have a further question. How can I actually create multiple pop-ups that trigger by a mouse click over a particular area in a picture! I WILL ACCEPT ANY SUGGESTIONS OR SCRIPT THAT MAY HELP and give me an idea or two!!! THanks -Badi
Comment/Reply (w/o sign-up)
FeedBacker
Feb 14 2008, 08:00 PM
You can try this code, Its correct
How To Create A Popup Window With Javascript?
<HEAD> <!-- STEP TWO: Use the following button code for the new window --> <form> <input type=button value="Popup Window" onClick="javascript:popUp('This area please mention the your Folder or file')"> </form> -Ganesh
Comment/Reply (w/o sign-up)
techyguru007
Apr 1 2008, 09:59 PM
Hey I made a tut on youtube. Here's the link: http://youtube.com/watch?v=1KTe6mWhBq0There's no sound. But it tells you how to make a simple pop-up box.
Comment/Reply (w/o sign-up)
FeedBacker
Apr 9 2008, 08:42 AM
Call javascript from server side
How To Create A Popup Window With Javascript?
Hello friends, I have one Query in javascript.. I call javascript function server side without any event fire like onblur,mouseover etc. And after the function then return server side.. Please help me this query Regards, Prashant -reply by prashant
Comment/Reply (w/o sign-up)
java-area
Apr 15 2008, 09:19 PM
I think the common way to create a popup with JavaScript is using Div elements. You can simply put any Html code into the tag DIV and make this Div unvisible. For example: HTML <body> ......
<DIV id="myTestDiv" style="left:-1000px;top:-1000px;disply:none;position:absolute;'> <table border=1> <tr> <td>Menu Item 1</td> </tr> <tr> <td>Menu Item 2</td> </tr> </table> </DIV> ..... </body> When my popup window (created as Div element) is unvisible, I do not worry about its location on the screen - it does not matter. That's way I put negative values for top and left coordinates. However, before visualing I should move it to appropriated location. It can be done by JavaScript using attribute style. For example, I can move my popup to any absolute location on current page: HTML <script language='javascript'> function moveMyPopup() { var mypopup = document.getElementById('myTestDiv'); mypopup.style.top = '25px'; mypopup.style.left = '100px'; } </script> After moving I can do it visible: pop.style.display = ''; Or hide it again: pop.style.display = 'none';
Comment/Reply (w/o sign-up)
java-area
Apr 16 2008, 02:35 PM
Comment to my previous message: Div elements are used very often for creating poipup menu on the first (main) page of Web sites. But we have to keep in mind, that different browser have different Javascript systacsis for moving and hiding/showing elements on the screen. Look at documentation attentively!
Comment/Reply (w/o sign-up)
Similar Topics
Keywords : create, popup, window, javascript
- 12 Javascript Image Galleries
(0)
Javascript Changes Aren't Working.
(6) The link is where I got it from, the code is my attempt at changing it, which has the identical
javascript, but it doesn't work. Can anyone fix it for me?
http://code.google.com/edu/client/samples/dhtmltest.html CODE example body {font: 14px
arial; color: #000066;} #mytext {position: absolute; top: 100px; left: 400px; font: 24px arial;
font-weight: 900; } var texttop = 100; var textleft = 400; function vanish(flag) { var myObj
= new getObj('myText'); myObj.style.visibility = (flag) ? 'hidden' :
'visible' } function m....
Javascript Help Needed : Alert(z) Works Fine But Document.write Not
please (2) hi all, I am facing problem in my javascript, any kind of help would be apreciated CODE
function basicFiles(){ //var Z = ""; for (i = 0; i var x =
document.Form.regionlist.options .value; var y = document.Form.regionlist.options
.text; var Z = "regions" + " " + " = " + y + ", "; alert(Z);
} } this works well but the following returns only errors CODE
function basicFiles(){ //var Z = ""; for (i = 0; i var x =
document.Form.....
Fun With Javascript And Forms
Lets have some fun with javascript! (2) I will post here every week with new and exciting things to do in javascript! After i finish 10 of
them , ill do Ajax(real-time) - 1.Alerting and documenting Forms Ever seen those dynamic sites
where if you hove your mouse or type something bad..etc , it popups up or dynamically gets written
onto the page? Well i am here to teach or rather help with all that stuff! Step 1:Get notepad out
and make a form CODE Text displays here: Step 2: Add the javascript Bit CODE
function onKeyDown() { document.GetElementById('r').innerHTML=document.....
Include Function For Javascript
(7) I've been working on an include function for javascript. It works just fine in Firefox and IE,
but for some reason, it doesn't result in the loading of the scripts for Safari. The code is as
follows: CODE function include(url) { // Include Guard var scripts =
document.getElementsByTagName("script"); for (var index = 0; index if (scripts.src == url) {
return; } } // Inclusion var head =
document.getElementsByTagName("head").item(0); var script =
head.appendChild(document.createElement("script")); script.type = "text/javascrip....
Problem With Javascript Alert();
(9) Hi Everyone, i just need to know that this javascript code is formatted correctly: (A piece of
code that it's written BESIDE an HTML code.) CODE My body contents |||Always keeps
telling me that this was incorrect. ....
Javascript: How Do I Create Embedded Pop-up Windows?
(7) The post title summarises my query - how do I create pop-up windows that are embedded inside a page?
Broadly, there are two kinds of JavaScript pop-ups.. one is that ultra annoying one, which pops
out a new instance of a browser window and displays something there (usually an ad) - made infamous
by all the warez and porn sites. Second one, which has come to be quite well-known of late is the
kind you see in recent versions of WordPress (in the Visual Editor) as well as LightBox based
galleries. Here a small window (or rather a div) pops-up embedded in the middle of t....
Javascript Question
Vertical Scroll Box (6) Alright well I've been working and modifying this template for about a year now I think and
I've started used JavaScript in it (bad to use templates I know, but I can't design them
x_x). So I'm trying to put a vertical scroll box in my side events panel to save space, but it
won't recognize the script. It takes the horizontal one I have as you can see if you look at
the site, but not the vertical. Actually it won't take anything in that little panel. So my
question really is, what could cause a javascript code to not work on a certain webpage ....
Add Text To Textarea
I suppose it uses DOM and JavaScript?? (7) I am working on a web "application" thing that allows you to click a button to add text to a
textarea. Similar to this forum when you click the BOLD button and it puts in {b}{/b} with the
square brackets. I want a similar function like that. Also, I want it to add wherever the cursor is,
not at the end. And after adding the thing, the cursor should be in between the tag or whatever that
was added. All the extra stuff are extra priorities. For now I would like to get something that
inserts text on click. The thing I came up with is: HTML html > head > text/javasc....
Problems With Dynamically Loading Javascript
As well as dynamically inserting HTML (2) Hello, I have started to try to create a JavaScript application (or rather, AJAX, but the
JavaScript is the part I'm having trouble with). I have come across a roadblock, though. I try
to load an external JavaScript file by editing the innerHTML of a div tag to contain <script
src="URL" type="text/javascript"> (with a real URL). The problem is that it is not loading. I have
used FireBug to check the dynamic HTML status, I get the following (with code removed): CODE
<script type="text/javascript"> <script src="source/main_login.js" typ....
I Need Help With Javascript.
help plz (7) Well, I want to learn to code in JavaScript, but when I try to view the page in Firefox, it
dosen't work. Can anyone tell me why its not working? Do i need to use a different browser?....
JavaScript Off Redirect Script
How to redirect a browser when Javascrip (2) Hi, here's a trick that will redirect a browser when JavaScript is turned off. Why not redirect
the ones that have JavaScript? It's because less than 10% of browsers have JavaScript turned
off; therefore, is better to redirect less than 10% of visitors than over 90%. Simply paste this
code into the HEAD section of your HTML document. CODE /* Created by: Will Bontrager ::
http://www.willmaster.com/ */ //--> Best regards,....
JavaScript Frames & Querystring
(4) Hi, I actually want to create a HTML page which has the capablity of reading a QueryString
(x.html?querystring=test) and then using a hidden frame pass on the data to an ASP Script on another
server. For obtaining the QueryString i use the following:- CODE function
getQueryVariable(variable) { var query = window.location.search.substring(1); var vars =
query.split("&"); for (var i=0;i var pair = vars .split("="); if (pair == variable) {
return pair ; } } } alert( getQueryVariable("QueryString") ); Now my
problem is to cre....
Vertical Marquee Using JavaScript
by The JavaScript Source (1) Hi, i find this script and hope that will be useful for somebody. Text scrolls from bottom to top,
pauses, then scrolls up and out of view. A link can be added, opening in a new window. Configuration
is simple. First copy the following code in a new file and name it vertical.js CODE /* This
script and many more are available free online at The JavaScript Source ::
http://javascript.internet.com Created by: Mike Hudson :: http://www.afrozeus.com */ /* To change
the values in the setupLinks function below. You will notice there are two arrays for each of Titles
and L....
Create And Import JavaScript Modules For A Large Script
(2) I have one main script which defines an object. I then have several other script files that define
functions for that object. I have tried using the following setup to import the functions: HTML
code snippet: Javascript code snippet: import Object.functionName; This works fine for
Mozilla Firefox, but causes an error in Internet Explorer which causes the object to be undefined.
I would like to know how better to import the functions into the main javascript (preferably without
needing to add the module script to the html file) that works in both Firefox a....
Ever Needs To Find Out A Table Height Or With With JavaScript
Well stop looking, here is the answer (CSS and JS) (2) Welcome everybody to this litle tutorial. by v.DragonEyE.n09 Introduction: Using
javascript you can find the height and width of a table, cell, div, image, etc.. the more simple way
is to ask for this... QUOTE id= "myElement" border= "0" cellpadding=
"0" cellspacing= "0" style= " height : 300px ; width
: 450px ; " > some
fake text and images for the example some fak....
JavaScript: Hide And Show Any Element With CSS
From the simple way to the more advanced way (Javascript & CSS) (12) Welcome everyone, this is my first post. The first thing you need to know is... CSS
has two special attributes, the first one is " display " and the second is " visibility ". The
difference between these two goes like this. " display ": has many properties or values, but the
ones we need are "none" and "block". "none" is like a hide value, and "block" is like show. If you
use the "none" value you will totally hide what ever html tag you have applied this css style. If
you use "block" you will see the html tag and it's content. very simple. " visibi....
Javascript: Browser Detection Script
Detect your visitors browser (2) If you want to detect your visitors browser, sebd them a message and redirect them use this script:
CODE var browserName=navigator.appName; if (browserName=="Netscape") { alert("Hi Netscape
user!") window.location = "netscape.html" } else { if (browserName=="Microsoft Internet
Explorer") { alert("Hi Microsoft Internet Exlorer User!"); window.location = "MIE.html" }
else { alert("What are you browsing with?"); window.location = "unkown.html" } } //-->
....
Calling Of Functions Between Mulitple External Javascript Files
How do I use an external script to call a function from another script (2) I have a page that requires many Javascript functions. In order to make the coding easier to read
and edit, I decided to seperate them into 3 Javascript files. Two files will each do a specific job.
One file will have the shared functions that both other 2 files will need to use. They are all
linked to a page using three tags. The difficult part is that after the page calls a function in
one of the special code files, that Javascript file will need to call the functions located in the
common Javascript file. The file will call several functions, and it will an argumen....
JavaScript: Simple Dropdown Menu
Simple Dropdown Menu (5) This simple dropdown menu is flexible enough to be used in various ways. It can be placed and
modified in the webpage as is.....
Javascript: Simple Slidedown Menu
Simple Slidedown Menu (2) This is a simple slidedown from the top menu. It can be placed on the Webpage as is. To modify it
to a slideout menu, simply change the style and postion of the menu.....
Downloads With Javascript?
(7) Hi! I want to let people download .mp3's. But i don't want them tio have to right-click and
"Save as". Is there a way with Java Script? Cheers!' Jens....
Dynamicdrive: Good Site For JavaScript Codes
(5) If anyone needs Javascript codes or similar items for their web page a great place to go is
http://www.dynamicdrive.com . They have hundreds of codes that are good. I would reccomend them for
all your javascript needs.....
Unobtrusive Javascript Image Rollovers
really cool & useful.. (0) i find this really cool..gr8 piece of code. image rollovers Create image rollovers for your
navigation without hardcoding any JavaScript into the HTML code on your Web pages. Easy to
implement, even for beginners, and works across all browsers. Degrades nicely for visitors with
JavaScript turned off. CODE img {border: none;} ul {list-style-type:none;} ul li
{display:inline;} function isDefined(property) { return (typeof property !=
'undefined'); } var rolloverInitialized = false; function rolloverInit() { if
(!rolloverInitialized && isDe....
Bid Visitors Bye/thank U With A Popup Onunload In Just One Line!
script designed to open a window when the users leave the site (0) Copied from http://www.cgiscript.net/cgi-script/csNews...wone&id=54&op=t QUOTE add the one
line code below to the tag of the page you want to trigger the action from. when they leave that
page another window will open. change the text "URL" in the code below to reflect the new web site
address you want them to enter. QUOTE for example, when they leave your site you can open a
window that says thank you for visiting. QUOTE Code: CODE
onunload="window.open('URL')" thats it...now say a royal thanks to ur visitors!
cheers! shiv....
Javascript: Text To Texbox And Back To Text
(5) i need some help i want to create a thing where when some one double clicks a certain text it
changes into a texbox where they can edit the text and the they double click and it changes into the
test they just typed in. I have found this function in javascript that does some of it but i needs
to be simplified CODE "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Span to
Text Box - Demo - DOM /* © John Davenport Scheuer */ function exchange(el){ var
nodeI=el.parentNode, inputC=document.createElement('input'), text=el.innerHTML; el.style.f....
Best Way To Learn Javascript
I would very much like to know. (11) Well, I know HTML, I know CSS, so the next step is learning Javascript. I have heard that it is sort
of an easier way to do things than PHP, though I would very much like to learn PHP as well. So, I
thought that if I learnt Javascript, I might find it easier to learn PHP when I get to that point.
The problem though is actually finding out the best way to learn Javascript. I have been to
websites and things, but every time I read through the tutorials and articles and things, I
didn't learn anything. It when in one ear and out the other, you could say. So, that is wh....
Javascript: Disable Mouse Right-click In Browser
(21) just copy and paste this on to your html site in the head tag CODE /* */ var message="Hey
YOU!\nStop Stealing my pictures or\nFACE THE PUNISHMENT!" function click(e) { if (document.all)
{ if (event.button == 2) { alert(message); return false; } } if (document.layers) { if (e.which ==
3) { alert(message); return false; } } } if (document.layers) {
document.captureEvents(Event.MOUSEDOWN); } document.onmousedown=click; // --> ....
javascript vs java
(12) in my opinion javascript is better then java becasue java requires more programing experecense then
javascript and i think to that javascript is more reliable then java in some ways....
Getting Screen Resolution using Javascript.
(10) Is it possible to get the screen resolution of the users moniter using only javascript. No other
external stuff, just pure javascript. I guess most of the people using JAVA for this. I also got
some scripts regarding this which used SCREEN.WIDTH function or something, but they did not seem to
work out. Any possible solutions. BTW, is it possible to get the resolution using PHP ( I guess it
is not ) .......
Looking for create, popup, window, javascript
|
See Also,
*SIMILAR VIDEOS*
Searching Video's for create, popup, window, javascript
|
advertisement
|
|