| Author: Anurag | Language: html4strict |
| Description: No description | Timestamp: 2010-01-09 00:34:39 -0500 |
| View raw paste | Reply |
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
- "http://www.w3.org/TR/html4/strict.dtd">
- <html lang="en">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <script type="text/javascript">
- $(function() {
- bindNow();
- });
- function bindNow() {
- $("#list").bind("change", function() { alert("list item changed"); });
- }
- function changeList() {
- }
- </script>
- </head>
- <body>
- <p id="listContainer">
- <select id="list">
- </select>
- </p>
- </body>
- </html>
| View raw paste | Reply |
