Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: $(document).ready(function() { // TOGGLE ----------------------------------------------------------------------- $(".toggleCTA").next("div").hide(); $(".toggleCTA").toggle(function() { $(this).addClass("active"); }, function() { $(this).removeClass("active"); }); $(".toggleCTA").click(function() { $(this).next("div").slideToggle(100); }); autoOpenToggle(); }); I am using above function. it gives me error "Microsoft runtime error: autoOpenToggle(); object is not defined" Any one knows how can I load autoOpenToggle() function in javascript. |
The End.