Remove or hide div on runtime
- by Xulfee
following code remove div on runtime. I have written code perfectly but it did not delete or hide the div.
$(document).ready(function() {
$("#metainfo > input").live('click', function() {
$("#div" + this.id).fadeOut("slow");
});
});