Skip to content

Instantly share code, notes, and snippets.

View kyndaqtepammy's full-sized avatar
💭
soemthing big!

kyndaqtepammy

💭
soemthing big!
View GitHub Profile
@kyndaqtepammy
kyndaqtepammy / toggle.js
Created March 14, 2017 13:56
jQuery togglable
$('#play').click( function() {
$(this).addClass('hide');
$('#pause').removeClass('hide');
});
$('#pause').click( function() {
$(this).addClass('hide');