Created
July 30, 2014 11:17
-
-
Save trestles/068fe1dae096dca1eeb6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('body').on('click','.toggle_show_add_tn_form', function(){ | |
var menu_item_id_val=$(this).attr('data-menu-item-id'); | |
var this_form=$('#tn-' + menu_item_id_val); | |
var $that=$(this); | |
this_form.toggle("slow",function(){ | |
if(this_form.is(":visible")){ | |
$that.text('hide tasting note form') | |
}else{ | |
$that.text('show tasting note form') | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment