Using Jquery Mobile 1.0b
<div class="navSubBars" id="cat0Nav" data-role="navbar" style=" padding-top: 2px;">
<ul>
<li>item1
<li>item2
<li>item3
<li>item4
</ul>
</div>
$('.navSubBars>ul>li>a').live('vclick',function() {
var subMenuItem = $(this).text();
alert(subMenuItem);
});
First click event fires an alert. click any other item (anchor) on the page and another click event immediately fires. Subsequent clicks intermittently fires correctly, some don't fire an alert at all. Very random.
I need this to load dynamic content in a div on the same page, in case that helps.
I have tried chaining an unbind to bind, stopping propagation and return false, and different selectors, all with no success.
I'm looking for a work around, fix, or better approach. Thanks.