The following code will not work properly. I\'ve tried different variations & searching everywhere but no luck.
i = 1; var timer = new Array(); jQuery(\'a\')
setTimeout accepts javascript statements not the return value of jQuery(this).remove() :P See this link
setTimeout
jQuery(this).remove()
You can just function(){stuff} but not sure if jQuery(this) will be processed when you want it to.
function(){stuff}
jQuery(this)