I have some problem. When this statement is made it will only delete textual information and images but there left icon and little stripe.
<ul data-role="listview" class="listview_main" data-theme="c">
<li><a href="detail.php?id=undefined"><img src="1.src"><h1>Bla bla</h1><p>jou</p></a></li>
<li><a href="detail.php?id=undefined"><img src="1.src"><h1>Bla bla</h1><p>jou</p></a></li>
<li><a href="detail.php?id=undefined"><img src="1.src"><h1>Bla bla</h1><p>jou</p></a></li>
</ul>
Script:
$(".listview_main li a[href='detail.php?id=undefined']").parent().remove();
I just want to delete all li elements with a href="detail.php?id=undefined". How can I do this? Thank you for answers.

