I want to run this script on pageload or after all the elements are loaded.
JavaScript
<script type="text/javascript">
    function backgroundload (){
          $(".portfolio-background-color")
              var color = /#[0-9\A-F]+/.exec($(this).html())[0];
              $(this).css('background', color)
      }
       window.onload = backgroundload;
</script>
i'm new to js please check if my code is okay and is it the correct way to load the js
 
     
    