need some help on this one...
I'm working with a live notification...
I'm using this code to achieve this and its working fine:
function loadlinkAlert(){
$('#footer_main').load('./includes/userAlert.php',function () {
     $(this).unwrap();
});}
 var callnotification = function(){
 $.sticky('New Messae From: ');
 }
 setInterval(callnotification,4000);
but how can i put the data from userAlert.php to $.sticky('New Message From:'); next to "New Message From:"..
Thanks in advance..
 
    