120 likes | 443 Views
<option> < fieldset > < abbr > < textarea >. XHTML. <select> <option>Volvo</option> <option>Saab</option> <option>Mercedes</option> <option>Audi</option> </select>.
E N D
<option> <fieldset> <abbr> <textarea> XHTML
<select><option>Volvo</option><option>Saab</option><option>Mercedes</option><option>Audi</option></select><select><option>Volvo</option><option>Saab</option><option>Mercedes</option><option>Audi</option></select>
<form><fieldset><legend>Personalia:</legend>Name: <input type="text" size="30" /><br />Email: <input type="text" size="30" /><br />Date of birth: <input type="text" size="10" /></fieldset></form>
<html> <body>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</body> </html>
<html> <body> <table border="1"> <caption>Monthly savings</caption> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$50</td> </tr></table> </body> </html>
<html> <body> <select> <optgroup label="Swedish Cars"> <option value="volvo">Volvo</option> <option value="saab">Saab</option> </optgroup> <optgroup label="German Cars"> <option value="mercedes">Mercedes</option> <option value="audi">Audi</option> </optgroup></select> </body> </html>
Jquery http://www.w3schools.com/
<html> <head><script type="text/javascript" src="jquery.js"></script><script type="text/javascript">$(document).ready(function(){ $("div").focusin(function(){ $(this).css("background-color","#FFFFCC"); });});</script></head><body><div style="border: 1px solid black;padding:10px;">First name: <input type="text" /><br />Last name: <input type="text" /></div><p>Click in the input field to get focus.</p> </body> </html>
What is AJAX?AJAX = Asynchronous JavaScript and XML.AJAX is a technique for creating fast and dynamic web pages.