Why is my jQuery toggle function not working?
See this demo: http://project.4greality.com/category/budget-homes
My Code:
<script>
$(document).ready(function(){
$("a.switchThumb").toggle(function(){
$(this).addClass("swap");
$("div.containerDiv").fadeOut("fast", function() {
$("#containerDiv").fadeIn("fast").addClass("displayToggleNone");
});
},
function () {
$(this).removeClass("swap");
$("div.containerDiv2").fadeOut("fast", function() {
$("#containerDiv2").fadeIn("fast").removeClass("displayToggleNone");
});
});
});
</script>
Uncaught TypeError: Object [object Object] has no method 'hoverIntent'. – David Thomas Apr 13 '12 at 21:34