Skip to content

Instantly share code, notes, and snippets.

@xlplugins
Last active February 25, 2026 08:24
Show Gist options
  • Select an option

  • Save xlplugins/8aa1ff6908f40e5e1e5318aa3928fbba to your computer and use it in GitHub Desktop.

Select an option

Save xlplugins/8aa1ff6908f40e5e1e5318aa3928fbba to your computer and use it in GitHub Desktop.
Trigger Choose Option WHen Click on Add Button
jQuery(function($){
$('body').on('click','.wfob_choose_variation',function(e){
e.preventDefault();
e.stopPropagation();
$(this)
.closest('.wfob_wrapper')
.find('.wfob_qv-button.var_product')
.trigger('click');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment