This soulutions uses JQuery and the script created by Baris Wanschers.
- JQuery can be deployed in two ways, remotely or locally:
- Remotely - This page is using a remotly hosted script found on the Google API site.
- Nothing needs to be changed to the standard page to use the remotly hosted JQuery file.
- Locally - If you or your admin have a local copy of JQuery and would like the page to utilize this, then you may need to modify the code on the TabPage.
- You have two options to utilize the JQuery locally:
Current script in the TabPage:
<script type="text/javascript">
if(typeof jQuery=="undefined"){
var jQPath="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/";
document.write("<script src='",jQPath,"jquery.min.js' type='text/javascript'><\/script>");
}
</script>