I have loaded a css file on server so I am having a URL with me. How can i load it in my perl code using JQuery ?
So currently I am hardcoding the css in my mason pa
$(document).ready(function(){ console.log("ready!"); var e=$("",{ rel:"stylesheet", type:"text/css", href:"/your/css/file.css"})[0]; e.onload=function(){ console.log("CSS IN IFRAME LOADED")}, document.getElementsByTagName("head")[0]. appendChild(e)});