Welcome To Snipplr
Everyone's Recent JavaScript Snippets Tagged window
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
This step-by-step tutorial describes how to build an HTML5-based mobile web app by means of Webix library (open source, GPL) and PhoneGap framework. As a result you’ll get an awesome native app for Android devices with rich UI and high performance.
0
3571
posted 11 years ago by kengajunior
Javascript to open a URL in a new window without triggering a browser's pop-up blocker. (May not work in callbacks, but not sure why.)
1
3782
posted 12 years ago by eklemen
This snippet lets you call a Javascript function declared within an IFrame from the parent element of the IFrame
0
3748
posted 15 years ago by alexscript
Automatically use jQuery to Open External Links in New Window (checking domain first).
3
2765
posted 15 years ago by mindshare
Returns window size as object.
winsize.x = window width;
winsize.y = window height;
1
2295
posted 16 years ago by djstaz0ne
this script brings you a "back to top" when you cross the vertical threshold defined as argument on the body tag (e.g.: 200px)
Requires JQuery but can easily be adapted to other JS framework
3
2563
posted 17 years ago by blackthorne
Rather than using target="_blank", which is deprecated by the W3C in XHTML, you should use rel="external" for links that you want to pop out in a new window. This is the javascript that makes it happen.
0
2447
posted 17 years ago by chippper
It is utterly annoying when DOM event handler exceptions fail silently with Firebug. This package fixes this common problem.
0
1743
posted 17 years ago by miohtama
Two different ways to open an external link (ones that start in http) in a new window. I know this isn't a great thing to do, but some clients _need_ to have it.
3
2761
posted 17 years ago by 1man
Atualiza janela principal após fechar Pop-UP
Refresh Main window after close the Pop-Up
0
1666
posted 18 years ago by LondonWeb
From: David Walsh.
http://davidwalsh.name/dw-content/open-links.php
2
2587
posted 18 years ago by gbot
A way to call a function before the window is unloaded/refreshed/etc. Used in the first E-shot Management System. Useful for auto-saving data/content before the window is closed or refreshed.
1
2320
posted 19 years ago by andyhartleeds
Excellent Script for opening new windows from links while adhering to modern HTML/XHTML standards. Simple put rel="nofollow" in the anchor and link to the script within the HEAD.
I prefer to remove the text that states the link opens in an externa...
1
2635
posted 19 years ago by jonhenshaw
This function allows you to open a new window, without using any inline Javascript. Simply add rel="external" to the link you wish to open in a new window.
3
3486
posted 19 years ago by 1man
Based on the linked SitePoint article but with options to limit the container (eg body copy) and set the target. Use '_blank' for a new window for each link. Also adds a class (based on the rel value) for styling. Call the 'relWindow' on window load.
2
2201
posted 19 years ago by mountainash
Handy for after submitting a form or moving sites and wanting to tell users about the change. Just change the URL (can be absolute or relative) and the timeout. Shown here as 5 seconds.
5
2663
posted 19 years ago by mountainash
A an excellent script for allowing links to open new windows while keeping the code standards compliant.
If you look at the last line of the script, you will notice that the JSTarget.init() function takes three parameters (all optional). This is w...
0
2059
posted 19 years ago by jonhenshaw