how do we find all ul [data-role=listview] li a items?
I'm trying to find all the rel="external" links that are only stored under <ul data-role="listview">...</ul>. How do we go about writing that? This is what I have so far, but don't know how to implement the "listview" part into it....
- if ($('ul li a').attr("rel","external").length) {
- $('ul li a').attr("rel","external").append('goes out to full site');
- }
Thanks!
*Break through the ice and never look back*