-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathdemo.html
28 lines (28 loc) · 810 Bytes
/
demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="jquery.placeholder.js"></script>
<title>jQuery-Placeholder</title>
<style>
input {padding:4px; width:225px;}
</style>
</head>
<body>
<h1>jQuery-Placeholder</h1>
<p>This plugin supports a fallback for browsers that do not yet support the HTML5 placeholder attribute.</p>
<h2>Demo form</h2>
<form action="">
<p>
<input type="text" placeholder="username" name="username">
</p>
<p>
<input type="password" placeholder="password" name="password">
</p>
</form>
<script>
$(':text[placeholder],:password[placeholder]').placeholder();
</script>
</body>
</html>