I think my jquery ajax page loading is a bit slow. When I click my href with an onClick handler sometimes it doesn't response and I have to doublelick? How can I avoid this?
<a target="_blank" class="arrow" href="javascript:void();"
onclick="f(\"value",\"value\");return false;">
<div class="teaser">
<h3></h3>
<p class="subheadline"></p>
<hr class="divider">
<p></p>
</div>
<img height="353" class="img" src="example.jpg" width="374">
</a>
Maybe it's because of the empy h3 and p tags? It feels a bit sluggish??
My function f is:
function f (url, id)
{
var btn = $(this);
if (btn.data('running'))
return;
$j('#tx #singleview').empty();
btn.data('running', true);
url="http://"+url+"index.php?id="+id+"&eID=tx";
url_stack.push(url);
$j.getJSON(url, function(json) {
$('#container').css({
"z-index" : "-100",
"margin-left" : "148",
"top" : "-800"
})
$('#container').animate({
"opacity": "0.0",
"top": '+=800'
}, 900, function() {
// Animation complete.
});
var singleview = $j('#tx #singleview');
singleview.css({
"position": "relative",
"top": "-800px",
"height": "800px"
})
singleview.append($j("#singleviewTemplate").tmpl(json).css({
"visibility": "visible",
"position": "relative"
}));
singleview.animate({
opacity: 100.0,
top: 0
}, 900, function() {
// Unset it here, this lets the button be clickable again
btn.data('running', false);
});
});
}
f()function? – Rory McCrossan May 28 '12 at 12:17onclickattribute. – lanzz May 28 '12 at 12:18onclickattribute like that at all with jQuery. – James McLaughlin May 28 '12 at 12:18onclick="f("value","value");return false;"should not be parsed correctly at all. Look at the quotation marks. – Felix Kling May 28 '12 at 12:20