Hi,
In my application I have <li>s and I am using Jquery to remove a particular <li>
The code I am using is
$(".close").click(
function() {
$(this).parent().remove()// Links with the class "close" will close parent
return false;
}
);
Using this I am successfully able to remove a li but after its being removed...The <li> below it moves in place of the deleted one and is creating a white space. How can i remove that white space