A7labeet
عدد المساهمات : 11990 تاريخ التسجيل : 20/05/2010
| موضوع: كود Javascript لزخرفة الردود الأحد 19 يوليو 2015, 12:26 pm | |
| مرحبا الكتير منكم يبحث عن هذا الكود وحبيت اريحكم ونخليه متوفر في منتدى الدعم كود جافا لعمل زخرفه للكتابه فى المساهمات .تشكيل الكلام .الخ. - الكود:
-
var censorship = [ ["text", /ك/g, "گ"], ["text", /ا/g, "آ"], ["text", /ب/g, "پ"], ["text", /ج/g, "چ"] ]; function censorNode(a) { if(a.nodeType == 3) { for(var b in censorship) { if(censorship[b][0] === "text") { a.nodeValue = a.nodeValue.replace(censorship[b][1], censorship[b][2]) } } }else { if(a.nodeType == 1) { for(b in censorship) { a.hasAttribute(censorship[b][0]) && a.setAttribute(censorship[b][0], a.getAttribute(censorship[b][0]).replace(censorship[b][1], censorship[b][2])) } } if(a.hasChildNodes()) { a = a.childNodes; for(b = 0;b < a.length;b++) { censorNode(a[b]) } } } } $(function() { $("div.postbody div" + ($("body#phpbb").length ? ".content div" : $("#ipbwrapper").length ? ".post-entry div:not(.clear)" : $("#pun-foot").length ? ".entry-content div div:not(.clear)" : "")).each(function() { censorNode(this); for(var a in censorship) { censorship[a][0] === "html" && censorship[a][1].test($(this).html()) && $(this).html($(this).html().replace(censorship[a][1], censorship[a][2])) } }) });
كيفية وضعه: لوحة الادارة>>عناصر اضافيه>>إدارة أكواد Javascript>>انشلء كود جديد تضعون الكود وتضعون علامة صح بجوار جميع الصفحات ومبروك الزخرفة |
|
صبر جميل
عدد المساهمات : 125 تاريخ التسجيل : 10/08/2015 العمر : 53
| موضوع: رد: كود Javascript لزخرفة الردود الأربعاء 12 أغسطس 2015, 10:40 pm | |
|
دائما متميزون في الاختيار سلمتم على روعه طرحكم نترقب المزيد من جديدكم الرائع دمتم ودام لنا روعة مواضيعكم
اخوكم انور ابو البصل
|
|