Guest User

Untitled

a guest
Dec 12th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <h1 class="page_headers" id="product_title">5/8 Other Stuff</h1>
  2. <label class="radio-option">
  3. <span>5/8</span>
  4. </label>
  5. <label class="radio-option">
  6. <span>1/8</span>
  7. </label>
  8.  
  9. <label class="radio-option">
  10. <span>1/2</span>
  11. </label>
  12.  
  13. $( document ).ready(function() {
  14. var partTitle = $("#product_title").text();
  15.  
  16. $( "span" ).each(function( i ) {
  17. if ($(this).text().is(":contains('" + partTitle + "')")) {
  18. this.css = ("display", "none");
  19. } else {
  20.  
  21. }
  22.  
  23. });
  24. });
Add Comment
Please, Sign In to add comment