How can I make this script delay for 350 miliseconds while waiting for the css3 transition to end?
<script type="text/javascript">
$(document).ready(function() {
var last = "";
$("#thumbs a").click(function() {
event.preventDefault();
var graphic = $(this).attr("href");
if(last != graphic) {
$("#placeholder").before( "<img src=\"" + graphic + "\" />" );
$("#mask").css("marginTop","-=450px");
last = graphic;
}
});
});
</script>
Basically, when you click, it should check to see if its been clicked within the last 350 miliseconds, and if it has, do nothing.
I've heard of the transitionend function, but I couldn't figure out how to implement it.