I'm using a great Javascript popup balloon from here http://file.urin.take-uma.net/jquery.balloon.js-Demo.html .
The following code functions great, but the balloon is shown by default when the page loads. How can I make the balloon hidden on load and appear only when the image is clicked?:
<script>
$(function() {
$("#myballoon > img").showBalloon({
position: "right",
css: {}
}).toggle(function() { $(this).hideBalloon(); }, function() { $(this).showBalloon(); });
});
</script>
Thank you!