Rating: 5 stars
I had to apply html tag styles and worked like a charm.
]]>Rating: 5 stars
This plugin does the job it’s meant to.
The only drawback is javascripts gets sorted (according to the piorities)on client side, so you can’t be sure of the actual “chain” of scripts before the javascript ordering occurs. Meaning if you have :
1) Script2.js “alert(a);” with priority “t+1”
2) Script1.js “var a = ‘a’;” with priority “top”
you’ll end up with an alert of “undefined” value.
On the other hand if your script wait for $(document).ready(); you won’t have such issue.
]]>