Strike out a word in javascript when item clicked

AkeB0N0

New Member
Strike out a word in javascript/jquery when item clicked.So I am clicking and item ,the item fades out but in the same time I want the text to strike out.Ex. I have an apple(image) and a apple(text). When I click on the apple I want the image to fade out and the text to strike out. \[code\] `<div id="items"> <p>Apple</p> </div> <div id="content"> <div class="box" id="pic1"> <img src = http://stackoverflow.com/images/apple.png /></div> <script> $("#pic1").click(function () { $("#pic1").fadeOut("slow"); }); </script>\[/code\]This is my code until the image fades out but I cannot figure out how can I make the text to strike out???
 
Top