A web developer's blog. PHP, MySQL, CakePHP, Zend Framework, Wordpress, Code Igniter, Django, Python, CSS, Javascript, jQuery, Knockout.js, and other web development topics.

Tag Archives: stackoverflow

jQuery: remove and object after fading out

Another re-post from stackoverflow. $("#id_of_object_to_remove").click(function() { $(this).fadeOut(500, function() { $(this).remove(); }); });

Posted in General | Tagged , | Leave a comment

jQuery: children() VS. find() – which is faster?

This is from stackoverflow and I am re-posting it here on my blog for record purposes. There is so much useful information there that in the days to come I will probably doing a bunch of re-posts from stackoverflow.com //For … Continue reading

Posted in General | Tagged , | 1 Comment