123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width">
- <title>Nano Bind Sample</title>
- <link href="index.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <input type="text" id="text1">
- <p id='p1'></p>
- <p><input name="dzen" type="radio" value="nedzen"> Не дзен</p>
- <p><input name="dzen" type="radio" value="dzen"> Дзен</p>
- <p><input name="dzen" type="radio" value="pdzen" checked> Полный дзен</p>
- <p>
- <textarea id="textarea"></textarea>
- </p>
- <p>
- <select id="select">
- <option value="">--</option>
- <!--<option value="M" style="background-color: gray;">Male</option>-->
- <!--<option value="F">Female</option>-->
- <!--<option value="X">Xenomorph</option> -->
- </select>
- </p>
- <input type='checkbox' id='check1'><br/>
- <table>
- <tbody id="numberTable">
- <tr>
- <td>table template line 1</td>
- </tr>
- <tr style='background-color: gray;'>
- <td>table template line 2</td>
- </tr>
- </tbody>
- </table>
- <table>
- <tbody id="hashTable">
- <tr>
- <td class='age'></td>
- <td>asdfad</td>
- <td class='surname'></td>
- <td>zzzzZZZ</td>
- <td class='name'></td>
- </tr>
- </tbody>
- </table>
- <strong>Use $s variable for accessing data in DOM</strong>
- <pre id='state' style='background-color: lightgray;'>
- 2 seconds timeout
- </pre>
- <script src="index.js"></script>
- </body>
- </html>
|