Skip to content

Instantly share code, notes, and snippets.

@dewang
dewang / fastclick
Created May 25, 2012 08:27 — forked from nate8684/fastclick
fastclick
$(document).bind( "pageload", function(){
// Check if the body tag wants fastclick buttons to be set up
var fast_click = $("body").jqmData("fastclick");
if (fast_click != 'campusdetail') {
initFastButtons();
} else {
// Do you actually need to do anything here?
// Try leaving it as-is and see if the fastbuttons are cached.
}
});