I'm trying to use the Jquery.UI library, the issue is, the example given at jqueryui.com is when you pass the effect type, where I want to load a fade out
The JSFiddle is here
My code
<div id="effect">
<h3>Hide</h3>
<p>Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. Nulla lorem metus, adipiscing ut, luctus sed, hendrerit vitae, mi.</p>
</div>
<script>
$( document ).ready(function() {
$( "#effect" ).hide( "blind", 1000, callback );
});
</script>