diff options
author | Ryan Johnson <rjohnson@mozilla.com> | 2021-04-29 16:16:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 16:16:42 -0700 |
commit | 95aca4b4d8fa62815d4bd412fff1a364f842814a (patch) | |
tree | 5e57661720fe9058d5c7db637e764800b50f9060 /files/ar/orphaned/أحداث_مكتبة_jquery/index.html | |
parent | ee3b1c87e3c8e72ca130943eed260ad642246581 (diff) | |
download | translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.gz translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.bz2 translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.zip |
remove retired locales (#699)
Diffstat (limited to 'files/ar/orphaned/أحداث_مكتبة_jquery/index.html')
-rw-r--r-- | files/ar/orphaned/أحداث_مكتبة_jquery/index.html | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/files/ar/orphaned/أحداث_مكتبة_jquery/index.html b/files/ar/orphaned/أحداث_مكتبة_jquery/index.html deleted file mode 100644 index 56ca59f3b5..0000000000 --- a/files/ar/orphaned/أحداث_مكتبة_jquery/index.html +++ /dev/null @@ -1,64 +0,0 @@ ---- -title: أحداث مكتبة jQuery -slug: orphaned/أحداث_مكتبة_jQuery -original_slug: أحداث_مكتبة_jQuery ---- -<h1 id="تعريف">تعريف</h1> -<p>أحداث مكتبة jQuery تقوم بربط الدوال مع عنصر معين.</p> -<p>يمكن أخذ مثال عن أحداث مكتبة jQuery كعندما يضغط المستخدم على زر أو يقوم بإدخال نص أو يحرك مؤشر الفأرة فوق منطقة محددة في الصفحة.</p> -<h1 id="أحداث_مكتبة_jQuery">أحداث مكتبة jQuery</h1> -<h2 id="حدث_blur()">حدث blur()</h2> -<p>يقوم الحدث blur() بمعالجة دالة ما عندما يفقد مربع إدخال النصوص المحدد إمكانيته على الإدخال,مثال:</p> -<pre dir="ltr"><script src="http://code.jquery.com/jquery-latest.js"></script> -<script> -$(document).ready(function() { -$("#text").blur(function() { -$(this).css("background-color","orange"); -}); -}); -</script> -<input type="text" id="text"> -</pre> -<p>إنتقل إلى الرابط التالي لتشاهد كيف يعمل هذا الحدث: <a href="http://jsbin.com/tibequrucelu/1/edit">http://jsbin.com/tibequrucelu/1/edit</a></p> -<hr> -<h2 id="حدث_change()">حدث change()</h2> -<p>يقوم الحدث change() بمعالجة دالة ما عندما يتغير محتوى مربع إدخال النصوص,مثال:</p> -<pre dir="ltr"><script src="http://code.jquery.com/jquery-latest.js"></script> -<script> -$(document).ready(function() { -$("#text").change(function() { -alert("<div dir="rtl">لقد تغير محتوى النص</div>"); -}); -}); -</script> -<input type="text" id="text"> -</pre> -<p>انتقل إلى الرابط التالي لتشاهد كيف يعمل هذا الحدث: <a href="http://jsbin.com/getigucoqeba/1/edit">http://jsbin.com/getigucoqeba/1/edit</a></p> -<hr> -<h2 id="حدث_click()">حدث click()</h2> -<p>يقوم حدث click() بمعالجة دالة ما عندما يتم الضغط بزر الفأرة الأيسر على العنصر المحدد,مثال:</p> -<pre dir="ltr"><script src="http://code.jquery.com/jquery-latest.js"></script> -<script> -$(document).ready(function() { -$("#button").click(function() { -alert("<div dir="rtl">لقد تم ضغط الزر</div>"); -}); -}); -</script> -<input type="button" id="button" value="<div dir="rtl">اضغط هنا</div>"> -</pre> -<p>انتقل إلى الرابط التالي لتشاهد كيف يعمل هذا الحدث: <a href="http://jsbin.com/radepuyuwexe/1/edit">http://jsbin.com/radepuyuwexe/1/edit</a></p> -<hr> -<h2 id="حدث_dblclick()">حدث dblclick()</h2> -<p>يقوم حدث dblclick() بمعالجة دالة ما عندما يتم الضغط بشكل مزدوج بإستخدام زر الفأرة الأيسر على العنصر المحدد,مثال:</p> -<pre><script src="http://code.jquery.com/jquery-latest.js"></script> -<script> -$(document).ready(function() { -$("#button").dblclick(function() { -alert("<div dir="rtl">لقد تم ضغط الزر بشكل مزدوج</div>"); -}); -}); -</script> -<input type="button" id="button" value="<div dir="rtl">اضغط هنا</div>"> -</pre> -<p>انتقل إلى الرابط التالي لتشاهد كيف يعمل هذا الحدث: <a href="http://jsbin.com/delazakoloye/1/edit">http://jsbin.com/delazakoloye/1/edit</a></p> |