Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. if($('#footerextra .link3 .ui-btn-inner .ui-btn-text').is(':empty')){
  2. $(this).closest(.link3).hide();
  3. }
  4.  
  5. <div id="footerextra" class="ui-footer ui-bar-b" data-theme="b" data-role="footer" style="width=100%; text-align:center; margin: 0 auto;" role="contentinfo">
  6. <a class="link3 ui-btn ui-shadow ui-btn-corner-all ui-btn-up-b" href="/cz/cs/80_automobilovy-prumysl/1191_vyroba-automobilovych-dveri.html?do=article" data-corners="true" data-shadow="true" data-iconshadow="true" data-wrapperels="span" data-theme="b">
  7. <span class="ui-btn-inner ui-btn-corner-all">
  8. <span class="ui-btn-text"> </span>
  9. </span>
  10. </a>
  11. </div>
  12.  
  13. $('#footerextra .link3 .ui-btn-inner .ui-btn-text').each(function () {
  14. if ($.trim($(this).text()) == 0) {
  15. $(this).closest('.link3').hide();
  16. }
  17. });
  18.  
  19. $('#footerextra .link3').filter(function(){
  20. return $.trim($(this).find('.ui-btn-inner .ui-btn-text').text()).length ==0
  21. }).hide()
  22.  
  23. if($('#footerextra .link3 .ui-btn-inner .ui-btn-text').is(':empty')){
  24. $(this).closest(.link3).hide();
  25. }
  26.  
  27. if($('#footerextra .link3 .ui-btn-inner .ui-btn-text').each(function() {
  28. if ($(this).is(':empty')){
  29. $(this).closest(.link3).hide();
  30. }
  31. });
  32.  
  33. $('#id1').hide();
  34.  
  35. < a id="id1" ></a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement