Difference between revisions of "Team:Czech Republic/Template:Scripts"

Line 34: Line 34:
  
 
<script>
 
<script>
jQuery(document).ready(function() {
+
$( document ).ready(function() {
    jQuery('p').each(function() {
+
$("p").each(function(){
        var $this = jQuery(this);
+
  if ($.trim($(this).text()) == ""){
        if($this.html().replace(/\s|&nbsp;/g, '').length == 0) {
+
    $this.remove();
            $this.remove();
+
  }  
        }
+
});
    });
+
 
});
 
});
 
</script>
 
</script>

Revision as of 07:28, 10 September 2015