I am creating a social network and people get notifications when they get new messages. When they click on the messages link in the header, the message notifications is suppose to go away. But it doesn't. I get taken to the messages page and the notification still stays there. Whenever I click it, it leaves for about 1 second and comes back. Any help ?
<a onClick="removeBadge();" href="messages.php">Messages
<?php
if($num_messages > 0)
echo '<span class="notification_badge" id="unread_message">'
. $num_messages .
'</span>'
?>
</a>
<script type="text/javascript">
function removeBadge(user) {
$("span").remove("#unread_message");
}
</script>