A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.
hi, could someone please tell me which source files generate this script -
<script type="text/javascript" > $('div.mojo-accordion').accordion(); $('div.mojo-accordion-nh').accordion({autoHeight: false}); $('div.mojo-tabs').tabs(); </script>
<script type="text/javascript" >$(document).ready(function () { $('a.cluetiplink').cluetip({attribute:'href', topOffset:25, leftOffset:25}); }); </script>
Our ScriptLoader control included in the layout.master file of the skin generates those scripts.
Thanks Joe. I dont have that code on my layout.master - is it possible I have an older version of this file. I still get the scripts below written without it though. Can you tell me where these scripts are actually held too?
Hi,
You should add this to the bottom of the <head section of your layout.master file if it does not already have this:
<portal:ScriptLoader id="ScriptLoader1" runat="server" />
Hope it helps,
Joe
OK will do. Can you tell me where these scripts are actually held too?
Those specific scripts you posted are not loaded from anywhere they are rendered in the page by ScriptLoader. They depend on other scripts loaded by url but you can see the urls if you view the source of the rendered page.