Skip to content

Instantly share code, notes, and snippets.

@dkruchok
Created May 21, 2015 19:00
Show Gist options
  • Save dkruchok/bda3bcbc72cfda7217aa to your computer and use it in GitHub Desktop.
Save dkruchok/bda3bcbc72cfda7217aa to your computer and use it in GitHub Desktop.
Iphone click function
$(document).on('touchstart click', '.class', function() {
$(".menu_container").fadeIn(600)
});
$(document).on('touchstart click', '.class to close', function() {
$(".menu_container").fadeOut(600)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment