I\'m making some Rocket launching effect by jQuery. When I click on Rocket, it\'ll swap with another rocket image, and then launch up. When I click \"Reset\" link, Rocket must r
Function imageMorph will create a new img element therefore the id is removed. Changed to
imageMorph
$("#wrapper > img")
You should use live() function for click event if you want you rocket lanch again.
Updated demo: http://jsfiddle.net/ynhat/QQRsW/4/