كود JavaScript نشر رسالة تلقائيا عند قفل الموضوع
طريقة التركيب
إدارة أكواد Javascript
اسم الكود : نشر رسالة تلقائيا عند قفل الموضوع
اختر المواضيع
الكود
طريقة التركيب
إدارة أكواد Javascript
اسم الكود : نشر رسالة تلقائيا عند قفل الموضوع
اختر المواضيع
الكود
JavaScript:
$(function(){/*Main jquery funtion*/
//By Wolfuryo//
//Free to use or modify, but you have to keep this notice here//
//Use at your own risk :D//
var message="الموضوع مغلق";/*The message to be posted*/
var active=true;/*Set to false to deactivate the script*/
//Do not modify anything below unless you know what you are doing//
var path=window.location.pathname;/*The current page*/
var reg=/t\d+\-/;/*Test to see if the current page is a topic*/
var elem=$("a[href*='/modcp?mode=lock']");/*Lock topic link*/
var link;/*Used later*/
if(!reg.test(path) || !elem.length || !active) return;/*Wrong page or no element, do not continue*/
$("a[href*='/modcp?mode=lock'], a[href*='/modcp?mode=lock']>img").click(function(e){/*Lock topic button is clicked*/
e.preventDefault();/*Prevent the page to automatically go to the lock topic page*/
link=$("a[href*='/modcp?mode=lock']").attr("href");/*Get the lock topic page's link*/
$.post("/post",{/*Post message*/
mode:"reply",/*Post mode as reply*/
t:parseInt(link.match(/\d+/)[0]),
message:message,/*Message*/
post:"Ok"/**/
}).always(function(){/*When the message is posted or error happens*/
window.location=link.split("%3F").join("?");/*Go to the lock topic page*/
})/*Close the function*/
})/*Close the click event*/
})/*Close the main function*/
يمكنكم تغير رسالة الرد مثل ما تريد ..."الموضوع مغلق"
JavaScript:
var message="الموضوع مغلق";/*The message to be posted*/
وفقكم الله
Mr Google