Remove or hide div on runtime
Posted
by Xulfee
on Stack Overflow
See other posts from Stack Overflow
or by Xulfee
Published on 2010-05-24T07:47:35Z
Indexed on
2010/05/24
7:51 UTC
Read the original article
Hit count: 245
JavaScript
|jQuery
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");
});
});
© Stack Overflow or respective owner