hi,
i want to add fade in and fade out effect's on my cms pages, i added code in the page content but code does not effecting in front end...
i added this code
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#div1").fadeIn();
$("#div2").fadeIn(2000);
$("#div3").fadeIn(3000);
});
</script>
here, div1, div2 and div3 are id's of <div> tag..
please tell me how to enable this effect in cms pages...
thank you...