how to show jquery notify bar on submit form using php or zf
Posted
by user1400
on Stack Overflow
See other posts from Stack Overflow
or by user1400
Published on 2010-04-06T14:55:57Z
Indexed on
2010/04/06
16:13 UTC
Read the original article
Hit count: 217
hi guys in my application on zend framework i use of 'jQuery Notify Bar' plugin for display messages, i'd like to show message when my form submit ,the other page is opened and notify bar be open until the other page is completely load and even some second more but the problem is that notify bar show for short Moment and when the other page begin to load , notify bar is closed, and the delay property is not effect to that
$('#myForm').submit(function(){
$.notifyBar({
html: "Thank you, your settings were updated!",
**delay: 20000,**
animationSpeed: "normal"
});
how to show notify bar in the other page too? thanks
© Stack Overflow or respective owner