notme
ViệtK:
- Code:
<script type="text/javascript">
$(function () {
if (Number($("a.mainmenu[href^='/privmsg'] strong").text()) > 0) {
var a = $("a.mainmenu[href^='/privmsg'] strong").text();
var b = confirm("Bạn có " + a + " tin nhắn mới.Bạn có muốn đến hộp thư.");
if (b == true) {
location.href = '/privmsg?folder=inbox'
};
};
});
</script>
ViệtK:
- Code:
<script type="text/javascript">
$(function () {
if ($("#i_icon_mini_new_message").length) {
var pm = $("#i_icon_mini_new_message").attr("alt").match(/\d+/);
if (confirm("Bạn có " + pm + " tin nhắn mới.Bạn có muốn đến hộp thư.")) location.href = '/privmsg?folder=inbox'
};
});
</script>