Send this to a friend
1
2 <input type="text" autocorrect="off" autocapitalize="off">
3
4
5 <meta name="format-detection" content="telephone=no" />
6
7
8 <meta name="apple-mobile-web-app-capable" content="yes" />
9
10
11 <input type="tel" /> <input pattern="[0-9]*">
12
13
14 <input type="url"> <input type="email">
15
16
17 <a href="http://maps.google.com/maps?q=Moon">Open in Google Maps</a>
18 <a href="tel:01234567890">Open the phone</a>
19 <a href="twitter:Tweet Tweet Tweet">Open the Twitter for iPhone app</a>
<input type="text" autocorrect="off" autocapitalize="off">
<meta name="format-detection" content="telephone=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<input type="tel" /> <input pattern="[0-9]*">
<input type="url"> <input type="email">
<a href="http://maps.google.com/maps?q=Moon">Open in Google Maps</a>
<a href="tel:01234567890">Open the phone</a>
<a href="twitter:Tweet Tweet Tweet">Open the Twitter for iPhone app</a>
Send this to a friend
1 <a href="#top" onclick="$('html, body').animate({scrollTop:0}, 'slow'); return false;">top</a>
<a href="#top" onclick="$('html, body').animate({scrollTop:0}, 'slow'); return false;">top</a>
Send this to a friend
http://www.quirksmode.org/js/popup.html
1 function popup(url) {
2 newWindow = window.open(url, 'name', 'height=400,width=335,scrollbars=yes');
3 if (window.focus) { newWindow.focus() }
4 return false;
5 }
6
7
function popup(url) {
newWindow = window.open(url, 'name', 'height=400,width=335,scrollbars=yes');
if (window.focus) { newWindow.focus() }
return false;
}