Hi There,
I have this in my head section:
- <script type="text/javascript">
$(function() {
setTimeout(function() {
$(".msg").hide('puff','',500,'');
}, 4000);
});
</script>
If I do an asynconous post the effect runs as desired the first time, if I then run the post subsequently the effect does not run as desired. Even if I include the effect js snippet in my return response it does not work.
Is there any method to reset once it runs so that it can happen on subsequent posts? It is to clear irrelevant messages from tabs once a form post is completed.
Thank yoU!