I\'m looking for a way to do the following.
I add a to a page, and an ajax callback returns some value. The
is fill
-
2020-12-04 10:01
Take a look at http://jqueryui.com/demos/effect/. It has an effect named pulsate that will do exactly what you want.
$("#trigger").change(function() {$("#div_you_want_to_blink").effect("pulsate");});