Advertisement
Dudo1985

Untitled

Dec 23rd, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function yasrSnippetSelect(postid, nonceSnippet) {
  2.  
  3.         var reviewtype = jQuery('#yasr-choose-reviews-types-list').find(":selected").text();
  4.  
  5.         if (reviewtype == 'Place') {
  6.  
  7.             jQuery('#yasr-additional-info-localbusiness').show();
  8.             jQuery('#yasr-additional-info-recipe').hide();
  9.  
  10.         }
  11.  
  12.        if (reviewtype == 'Recipe') {
  13.  
  14.             jQuery('#yasr-additional-info-recipe').show();
  15.             jQuery('#yasr-additional-info-localbusiness').hide();
  16.  
  17.         }
  18.  
  19.         jQuery('#yasr-choose-reviews-types-list').on('change', function() {
  20.  
  21.             jQuery('.yasr-additional-info-rich-snippet').show();
  22.  
  23.             reviewtype = jQuery('#yasr-choose-reviews-types-list').val()
  24.  
  25.             if (reviewtype == 'Place') {
  26.  
  27.                 jQuery('#yasr-additional-info-localbusiness').show();
  28.                 jQuery('#yasr-additional-info-recipe').hide();
  29.  
  30.             }
  31.  
  32.             if (reviewtype == 'Recipe') {
  33.  
  34.                 jQuery('#yasr-additional-info-recipe').show();
  35.                 jQuery('#yasr-additional-info-localbusiness').hide();
  36.  
  37.             }
  38.  
  39.         });
  40.  
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement