[Mr.P]
New member
Tác giả: Holysavior
Preview: Code này sẽ cho phép shoutbox hiện ở tất cả các trang...
Lưu ý: Không nên xài code này nhé các bạn, dễ gây lag forum lắm
===========
Đặt code tại Below The Boards
Preview: Code này sẽ cho phép shoutbox hiện ở tất cả các trang...
Lưu ý: Không nên xài code này nhé các bạn, dễ gây lag forum lắm
===========
Đặt code tại Below The Boards
Mã:
<script type="text/javascript">
/* created by Holysavior of ZNR
Shoutbox on all pages */
if(!location.href.match(/index/i)){
$.get(main_url,function(sb) {
var thebox = $("#shoutwrap",sb).parent().html();
$("#main").prepend("<div class='category'>"+thebox+"</div>");
$("#shoutpost").submit(function() {
var txt = $("#shoutpost :text");
shoutPost(txt.val());
txt.val('');
return false;
});
$("#shoutrefresh").click(shoutGrab);
});
}
</script>