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?
This is my suggestion. Since there is no way to put a jGrowl with respect to a DIV whether float left or right we will transfer it after render instead. Here's my code below taken from the original example.
The important part here is the line:
Which aligns the right property of the jGrowl object to the left property of my header. This basically transfers its location to make it look like as if it is under the header's div.