[jQuery] Having problems is using JQuery Effects in Vista Gadget.
Hi,
When trying to add a SlideUp effect it works well in the browser
but the same does'nt work with the Vista Sidebar gadget. m curious to
know the reason behind the problem. Let me know if u have any
solutions.
please find the code below:
js
$(document.body).ready(function() { //debugger;
$("a").click(function(){
if ($("div:first").is(":hidden")) {
$("div").show();
} else {
$("div").slideUp("slow");
}
});
});
HTML
<BODY>
<a href="#">click here</a>
<div id="one">
<img src="en-US/images/apple.png" >
<h2> This is apple </h2>
an apple everyday keeps doctor away
</div>
</BODY>
Your response is greatly valued!!!!!!
Thanks & Regards,
Jagan