You may want to change web2py_ajax.html and replace
if(jQuery('.flash').html()!='') jQuery('.flash').slideDown('slow');
...
if(flash) jQuery('.flash').html(flash).slideDown();
with
if(jQuery('.flash').html()!='')
jQuery.jGrowl(jQuery('.flash').html());
...
if(flash) jQuery.jGrowl(flash);
so this will by-pass normal flash and use jGrowl everywhere.
response.flash would still wotk even with .load content.
On Oct 6, 9:11 pm, Richard <[email protected]> wrote:
> > Can you write a recipe?
>
> Probably not necessary because it's just $.jGrowl("Hello world!")