for some reason the following is not working. What's wrong?
I'm just trying to toggle visibility of element. I have multiple links with class 'variant_description_link' on the page since I add form through js as well. All I want is find the closest 'variant-description' block and toggle visibility.
$('.variant_description_link').click(function() {
$(this).closest('.variant-description').toggle();
});