How to test these methods: Looking at our previous day tutorials, write a simple program with some html element structures and take a button. Clicking on the button, you call each of these methods and see the output.
Keep the programs simple, so that you can first understand the output. Later these simple DOM tree traversal techniques will be very useful while you encounter with some complex application development.
Assume that a client has mailed her requirements to us: She has 5 images in her html page. Once the user clicks on a image, a message should popin beside the image. Image should be clickable only once. Once the user clicks on other images, the messages appended beside previously clicked image must be removed.
With these requirements in mind, we shall start developing our image based jQuery Application.
Once the document is ready and the user clicks on a image: 1. Any b tag present in the document is removed. Thus, the message associated with the image which was being clicked previously is removed. 2. The parent tag of the image being clicked: i.e., div tag is selected and a message with b tag is appended to it, which appears beside the image being clicked by the user. 3. The event associated with the image being clicked is removed.
Note: Use of function().function() is called chain method. Example: parent().append(); next().parent().remove(); etc
Make sure to maintain the order of the code. If you replace or rearrange the code in a way other than above, you wouldn’t get expected result. While practicing, change the order of the code and look for the output, that would help you understand the code and the flow / execution flow well.
Video Tutorial: Working With Images: Small jQuery Application