Admin المدير
عدد المساهمات : 143 تاريخ التسجيل : 27/04/2010 العمر : 30 الموقع : https://kingsad.yoo7.com
| موضوع: ٍمجموعةأكواد لمنع إستعمال الزر الأيمن للفأرة الأربعاء مايو 26, 2010 4:48 pm | |
| أكواد لمنع إستعمال الزر الأيمن للفأرة - الكود:
-
<script LANGUAGE="JavaScript"> //<Body> و <Body/> حط الكود بين العلامة // --></script><script language="JavaScript"><!--
function click() { if (event.button==2) { alert('لست بحاجة للزر الأيمن'); } } document.onmousedown=click // --> // --></script><script></script> <p><center> <font face="arial, helvetica" size="-2">Free JavaScripts provided<br> by <a href="http://go.to/pentium!!!">Pentium!!!</a></font> </center><p>
-----------------------------
منع 2
-----------------------
<SCRIPT language=JavaScript><!--
function click() { if (event.button==2) { alert('Welcome in My Site :) '); } } document.onmousedown=click // -->
------------------------------- منع 3 -------------------------------- <SCRIPT language=JavaScript><!--
function click() { if (event.button==2) { alert('Welcome in My Site :) '); } } document.onmousedown=click // -->
--------------------------
منع من غير مسج ------------------------- <!-- This script has been in the http://www.javascripts.com Javascript Public Library! --> <!-- Note that though this material may have been in a public depository, certain author copyright restrictions may apply. --> <html> <head> <title>My Script-by Me</title> </head> <script language="JavaScript1.2"> /* No Right Click by: Mondain */
if (window.Event) // Only Netscape will have the CAPITAL E. document.captureEvents(Event.MOUSEUP); // catch the mouse up event
function nocontextmenu() // this function only applies to IE4, ignored otherwise. { event.cancelBubble = true event.returnValue = false;
return false; }
function norightclick(e) // This function is used by all others { if (window.Event) // again, IE or NAV? { if (e.which == 2 || e.which == 3) return false; } else if (event.button == 2 || event.button == 3) { event.cancelBubble = true event.returnValue = false; return false; } }
document.oncontextmenu = nocontextmenu; // for IE5+ document.onmousedown = norightclick; // for all others </script> <body>
<br>
Simba says Roar.<br>
</body> </html>
| |
|
agua عضو نشط
عدد المساهمات : 211 تاريخ التسجيل : 07/05/2010 العمر : 33 الموقع : www.kingsad.yoo7.com
| موضوع: رد: ٍمجموعةأكواد لمنع إستعمال الزر الأيمن للفأرة الجمعة مايو 28, 2010 4:25 pm | |
| | |
|
Fire king عضو مبتدئ
عدد المساهمات : 96 تاريخ التسجيل : 18/05/2010 العمر : 31
| موضوع: رد: ٍمجموعةأكواد لمنع إستعمال الزر الأيمن للفأرة الجمعة مايو 28, 2010 6:00 pm | |
| | |
|