Skip to content

Instantly share code, notes, and snippets.

Created June 1, 2015 16:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/76fa973b82a732594fce to your computer and use it in GitHub Desktop.
Save anonymous/76fa973b82a732594fce to your computer and use it in GitHub Desktop.
$(document).ready(function(){
$(".BILLEDTAG").click (function() {
if($(this). height() ==480){
$(this).animate({
height: '980',
width: '980'
});
}else{
$(this).animate({
height: '480px',
width: '700px'
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment