JavaScript Coder

jQuery

jQuery: applying selector within 'this'

When you handle events for a particular element, it is often required to make a change only within children of the element. Here is how to do it. Suppose this is the HTML code <h2>Select the services you want:</h2> <ul id='services'> <li><img src='tick.gif'>Build a Website</li> <li><img src='tick.gif'>Page design</li> <li><img src='tick.gif'>Flash banners</li> <li><img src='tick.gif'>SEO</li></ul> </ul> When someone clicks on each of the service, the image is to toggle. Here is the jQuery code to do that

Continue Reading →