InsanitysMuse
10-24-2012, 06:38 PM
1) Script Title: Featured Content Glider
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex17/featuredcontentglider.htm
3) Describe problem: I have Featured Content Glider working fine on the website I'm revamping, but I've run into a problem now that I'm trying to add a jQuery/ajax script of my own to the page. It appears the featuredcontentglider.js file is preventing my script from triggering, regardless of positioning. I've confirmed that it's just the featuredcontentglider.js file through various tests, and even just putting a semicolon near the end of the .js will let my script trigger, but then the content glider doesn't work.
My incredibly simple script is:
<script>
$(function()
{
$(".widecol").load("home.html");
});
</script>
I'm planning to turn it into a content loader so the content of the page changes without reloading the whole thing. I'm brand new to javascript/jquery so I can't identify if there's a missing piece of code in the featuredcontentglider.js that is preventing my script from firing.
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex17/featuredcontentglider.htm
3) Describe problem: I have Featured Content Glider working fine on the website I'm revamping, but I've run into a problem now that I'm trying to add a jQuery/ajax script of my own to the page. It appears the featuredcontentglider.js file is preventing my script from triggering, regardless of positioning. I've confirmed that it's just the featuredcontentglider.js file through various tests, and even just putting a semicolon near the end of the .js will let my script trigger, but then the content glider doesn't work.
My incredibly simple script is:
<script>
$(function()
{
$(".widecol").load("home.html");
});
</script>
I'm planning to turn it into a content loader so the content of the page changes without reloading the whole thing. I'm brand new to javascript/jquery so I can't identify if there's a missing piece of code in the featuredcontentglider.js that is preventing my script from firing.