I would like to add some jQuery to wordpress/woocommerce admin page. The code works good on the client page but never pass to wp-admin page.
This is the code:
 jQuery("#postbox-container-1").ready(function(){
      alert("now what?");
        
      $('p:contains("Poivre")').css('color', 'red');
     
    });
 
     
    