I am trying to prevent a link in my jQTouch application from loading the page in the href. A very simplified version of my code is as follows
<html>
<head>
<script type="text/javascript" src="/jquery.js"></script>
<link rel="stylesheet" type="text/css" href="/jqtouch/css-jqtouch.css">
<script type="text/javascript" src="/jqtouch/jqtouch.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
var jQT = $.jQTouch({});
$('#row0 a').bind('click', function(e)
{
e.preventDefault();
alert('test');
});
});
</script>
</head>
<body>
<div id="jqt">
<div id="row0">
<a href="#searchResults">Search</a>
</div>
<div id="searchResults">
<a href="#" class="back">Back</a>
</div>
</div>
</body>
</html>
When I click the 'Search' link, the alertbox appears, but the page still loads.
Am I missing something?