// sample solution to script.js
$(document).ready(function() {
$("div.header").click(function(e){
console.log("Hello world");
$(this).siblings(".content").animate({
//opacity: 0.25,
//left: '+=50',
height: 'toggle'
}, 250, function() {
// Animation complete.
});
});
});
No comments:
Post a Comment