[jQuery] Needs help with Growl
Can someone please help me implement growl? I am struggling to find
any documention for a simple implementation of this plugin. I have
tried the standard code
<script type="text/javascript" src="~/javascript/Growl/growl.js"></
script>
<script type="text/javascript" src="~/javascript/Growl/
mootools-1.2b2.js"></script>
<script type="text/javascript">
$(document).ready
(
Growl.Smoke({
title: 'Window.Growl By Daniel Mota',
text: 'http://icebeat.bitacoras.com',
image: 'growl.jpg',
duration: 2
});
}
</script>
which is what the plugin page implies. Technically, all I want is for
it to appear when the page is loaded. All i keep getting is "Syntax
Error". Thanks in advance for any help.
James