call notification box ..

Hey guys i have a form that insert in a databse and refresh’s back to the form afther completion.

i would like to call a notification box on success??

i have this that calls back

[php]

meta http-equiv=Refresh content=2;url=inc_form.php?success=1
if (!empty($_GET[success])) { echo “Completer!.

”; } //generic success notice
[/php]

how can i call a notification box?

so you want a little tiny peice of the html to have the success part

the success part work but i want a box to open(fade)

like

http://coderscab.in/demo/notifications/index.html

ok so read this

http://www.coderscab.in/2011/09/css3-jquery-notification-boxes/

ya thats it but how can you trigger this from a link

$(document).ready(function(){
$(".cross").click(function(){
$(this).parent(“div”).fadeOut(‘slow’);
})
});

look at my code.when i insert in the database it goes to the insert page then links back to the parent page…

meta http-equiv=Refresh content=2;url=inc_form.php?success=1

Sponsor our Newsletter | Privacy Policy | Terms of Service