Posted by: Amit Nazare on: July 16, 2009
Here is another tutorial for JavaScript. How to show/hide your div block with check box. Its very easy and simple to understand. Just copy the below code and try. JavaScript : <script type=”text/javascript”> function showMe (ids, box) { var vis = (box.checked) ? “block” : “none”; document.getElementById(ids).style.display = vis; } </script> Here the above JavaScript [...]
Posted by: Amit Nazare on: July 6, 2009
CSS sprites group multiple images into one composite image and display them using CSS background positioning. By this you can save significant amount of HTTP requests by combining it into one or more sprites and using them by CSS. Before knowing more about Sprites you need to know why to use CSS Sprites. Now you [...]