is there a way to pass script attributes into the loading javascript via head.js?
for example script we need to load is in original form like this :
<script type="text/javascript" charset="utf-8"
src="script.js"
data-vast-src="adscript.js"
data-post-ad-container="content-div"
data-autoplay="true"
data-width="600"
data-height="400">
</script>
so solution we need is something like this :
head.js("jquery.js", { url: "script.js", charset: "utf-8", data-vast-src: "adcript.js", data-post-ad-container: "content-div", data-autoplay: "", data-width: "600", data-height: "400" }, function() {
}
we have tried this, but it does not work...
No, this is not possible in HeadJS, but you can easily do it yourself