Team:Grenoble/script

From 2011.igem.org

(Difference between revisions)
Maxime.huet (Talk | contribs)
(Created page with "<!-- Remove all empty <p> tags --> <script type="text/javascript"> $(document).ready(function() { $("p").filter( function() { return $.trim($(this).html()...")
Newer edit →

Revision as of 20:16, 21 October 2011

<script type="text/javascript">

   $(document).ready(function() {
       $("p").filter( function() {
           return $.trim($(this).html()) == ;
       }).remove()
   });

</script>