inside a normal JS function:
$('#friendsPop').jGrowl("testtmee");
Wont work, but:
$.jGrowl("testmeee");
Works just fine.. I have tested everything, and if i make a link outside a function, a normal a: link like this:
<a href="javascript:void(0);" onclick="$('#friendsPop').jGrowl('testme');">link</a>
It works fine too. But i wish to activate
$('#friendsPop').jGrowl("testtmee");
After an ajax successcall, and i need to have an ID.
What can i do about this?