<html> <head> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("div").click(function () { $(this).css({ borderStyle:"inset", cursor:"wait" }); }); }); </script> <style> input { display:none;margin:10px; } </style> </head> <body> <body> <div>Click me</div> <input type="text" /> <input type="text"/> <input type="text" /> </body> </html>
30.132.CSS | ||||
30.132.1. | Change color for DIV | |||
30.132.2. | Change submit button background and border | |||
30.132.3. | Change background color | |||
30.132.4. | Change border style and cursor | |||
30.132.5. | Change CSS visibility to hide a tag | |||
30.132.6. | Remove style class | |||
30.132.7. | Looks for the class 'selected' on the matched elements. | |||
30.132.8. | Remove the class 'highlight' from the matched elements. | |||
30.132.9. | Remove two classes | |||
30.132.10. | Remove all the classes from the matched elements. | |||
30.132.11. | Toggle the class 'highlight' when a paragraph is clicked. | |||
30.132.12. | To access the background color of a clicked div. | |||
30.132.13. | If the property name includes a "-", put it between quotation marks: |