Here i like explain my problem clearly,
Actually am having a notification icon in my appication, which is used to show count of rows in table called Delay. like below
so now what i need is, when i used click the notification icon it must set cookie and then after 5 seconds count will automatically fadeout.
then if cookie is equal to the cookie which i set, it must hide the div #not-count for 1 hour.
this my code for fadeout after 5 seconds without cookie
$(document).ready(function($){
$('#notify-comet').on('click', function(e){
setTimeout(function() {
$('#not-count').fadeOut('fast');
}, 1000);
})
})
Help me to sort out this.
