Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. if (attributes.includes('Limited Editions')){
  2. console.log('its availabe');
  3. $('.attribute-limited_edition').html("<input type='checkbox' name='limit-edition' id='limit-edition'/> <span class='label'>Limited Edition</span>");
  4.  
  5. }
  6.  
  7. $(document).on('click', '#open-edition', function () {
  8. $('.is-widget-container-open_editions .ais-root .ais-body .ais-refinement-list--label input').prop("checked",true).trigger("click");
  9.  
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement