Questions tagged [jgrowl]

jGrowl is a jQuery plugin that raises unobtrusive messages within the browser, similar to the way that OS X's Growl Framework works.

jGrowl is a jQuery plugin that raises unobtrusive messages within the browser, similar to the way that OS X's Growl Framework works. This page contains documentation, examples and download.

66 questions
0
votes
1 answer

jQuery jGrowl dynamic ajax notification from php file

I have jQuery jGrowl loaded into my theme and I am able to display a notification like this: jQuery.jGrowl('This is a notification', { life: 10000}); However, I have a function that reloads every 30 seconds and i've put the jGrow notification into…
Ahmed
  • 1,403
  • 4
  • 21
  • 44
0
votes
0 answers

jquery function does not load when using scriptmanager

I currently have the following code that display a jquery growl when the page loads. I…
MTplus
  • 2,077
  • 4
  • 34
  • 51
0
votes
1 answer

How to show number of jgrowl notfications?

I am using a pool of 5 with jquery. So only 5 notifications should be shown. I think it would be nice to have maybe under the "close all" button to have a count like shown 5 of 20 notifications. To me it could get confusing if I keep closing…
chobo2
  • 83,322
  • 195
  • 530
  • 832
0
votes
0 answers

Jgrowl message giving error in console

I am using jgrowl.js and jgrowl.css to display a jgrowl message. In the console I am getting this error: Uncaught TypeError: Cannot read property 'update' of undefined in 268 line jgrowl.js file. This is the line: $(this).data("jGrowl").created =…
RAMESH B
  • 41
  • 1
  • 7
0
votes
1 answer

NoUiSlider On Event firing multiple times

Im displaying notifications each time i change a value using a slider, the first change creates one notification but then after that it creates multiple notification instead of one. Any ideas how i can stop this? Thank you for any help i have…
Tony_89
  • 797
  • 11
  • 39
0
votes
1 answer

Programming "turn on-off" JGrowl feature

I want to use JGrowl in my .Net MVC website. But I want the user to be able to turn it on off. Is there some kind of pattern for this functionality? Or is it just to make a if() and a database call on every pageload to check if the feature is on or…
Jakobbbb
  • 515
  • 1
  • 4
  • 10
0
votes
1 answer

ASP.NET RequiredFieldValidator causing problems with jGrowl (undefined is not a function)

I have a basic ASP.NET Web App setup with a master page that adds all of the scripts the app needs: In the following order: jquery.js, bootstrap.js, jgrowl.js, site.js All of my pages inherit from this master page. The pages without…
JTunney
  • 914
  • 1
  • 15
  • 46
0
votes
1 answer

Disable jgrowl notifications in wordpress

I'm developping a Wordpress site and would like to disable the JGrowl notifications that appear every time a product page is displayed. They show an information that we believe is not relevant to customers, so it would be better if it was…
Oscar Pérez
  • 4,377
  • 1
  • 17
  • 36
0
votes
0 answers

Compiling HTML in growl alert

I am trying to get HTML to compile in a growl alert. Here is my code: var html = '

' + rejection.config.method + ' '+ rejection.config.url + '

' + '
' + (_.isObject(rejection.data) ? ('
' + JSON.stringify(rejection.data,…
user1200387
  • 625
  • 2
  • 13
  • 22
0
votes
1 answer

jGrowl take message from html

Im trying to make jGrowl work with HML in a way, that I have messages in HTML and I want jGrowl display them as jGrowl div. Ie.: I try to upload a file, but it fails, so I show a message:
File upload failed!
What I want,…
MiChAeLoKGB
  • 796
  • 14
  • 38
0
votes
1 answer

jGrowl add and remove notification

I am not able to remove the jGrowl notification. Add: $.jGrowl(text, { sticky: true, header: header, theme: 'aa', growlId: tag}); Remove: $("div#" + tag).trigger("jGrowl.close").remove(); For adding, I am seting "growlId" and using that growlId…
user533844
  • 2,053
  • 7
  • 36
  • 43
0
votes
1 answer

jquery jqrowl get message from getjson

first thing first, im a PHP developer and im trying to learn jquery (javascript) and so far ive learn a lot but im a bit lost. json output. {"msg": [{"message":"blah", "header":"title of blah"}, {"message":"blah", "header":"title of blah"}]} i made…
0
votes
2 answers

close previous jGrowl notifications before showing a new one

I have a simple app that executes $.jGrowl("loading");. Then the data is displayed $.jGrowl("blah blah blah data goes here"); after crunching data which can take 1 -5 seconds. I've seen a post that mentions using the default.pool to only display…
shaiss
  • 2,000
  • 5
  • 22
  • 33
0
votes
1 answer

jQuery ".load" and jGrowl

I'm loading a HTML page using jQuery's .load method: $(document).ready(function() { $('#body_dynamic_css').load('/url/to/page'); }); I recently updated the version of jQuery to 1.7.2 from 1.4.2. I used to be able to use jGrowl after loading…
JSP
  • 547
  • 1
  • 4
  • 18
0
votes
1 answer

jGrowl issue in Chrome Extension

I have searched for a while, and I cannot seem to find an answer. I am developing a Chrome Extension that alerts the user when a specific page is open. I was using the default javascript alert, but it is, lets just say, not the most attractive UI…
Ty Pavicich
  • 1,050
  • 3
  • 9
  • 24