You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -25,33 +25,33 @@ Sitenin bütün içeriği [Markdown](http://daringfireball.net/projects/markdown
25
25
26
26
### Site Organizasyonu
27
27
28
-
All of the content lives inside of the subdirectories of the `page`directory. Each of these subdirectories is considered a**chapter**, and contains one or more **articles**, and there is also a top level file that corresponds to each chapter, which contains the chapter's human-readable title and an overview, which will appear on the chapter's landing page.
28
+
Tüm içerikler `page` dizini altında yer almaktadır. `page`dizini altında yer alan dosyaların her biri bir**konu** olarak kabul edilir ve bir çok **makaleyi** içinde bulundurur. Ayrıca bu durum üst düzey dosyalar içinde geçerlidir. Her konu dizininde insanlar tarafından okunabilir konu başlıkları ve kısa bir özeti mevcuttur. Bu konu başlıkları açılış sayfasında görünecek başlıkları oluşturmuş olur.
29
29
30
-
The [`order.yml`](https://github.com/okulbilisim/learn.jquery.com/blob/master/order.yml)file controls the order that chapters and articles appear in the site.
30
+
[`order.yml`](https://github.com/okulbilisim/learn.jquery.com/blob/master/order.yml)dosyası bölümleri ve makaleleri sitede görünen dosya sırasını kontrol eder.
31
31
32
32
33
-
### YAML Conventions
33
+
### YAML Kuralları
34
34
35
-
Each of the articles on the site has some YAML "Front Matter" that contains metadata. All articles should include the following:
35
+
Makalelerde bir karmaşa olamaması için belli standartlar getirilmiştir. Bir makalede olması gereken şartlar şunlardır.
36
36
37
-
*`title` - The title of the article as it will appear in the site. If it contains special characters, put the string in quotes.
37
+
*`title` - Sayfada makale başlığı olarak çıkacak olan kısımdır. Özel karakter içeriyor ise tırnak işareti kullanılmalıdır.
38
38
39
-
`title: "jQuery Event Extensions"`
39
+
`title: "jQuery Olay Uzantıları"`
40
40
41
-
*`level` - The approximate level of jQuery experience required to find the article useful. Options: `beginner`, `intermediate`, or `advanced`.
41
+
*`level` - Makalelerin anlaşılabilmesi için gerekli olan bilgi seviyelerini belirterek okuyucunun faydalı makaleye yönelmesini sağlamak için kullanılır. Örnek olarak: `başlangıç`, `orta`, or `ileri`.
42
42
43
-
`level: advanced`
43
+
`level: ileri`
44
44
45
45
46
-
## Building & Working Locally
46
+
## Kurulum ve Yerel Ağ Üzerinde Çalışma
47
47
48
-
As this site is part of the jQuery network of sites, its presentation is controlled by [jquery-wp-content](https://github.com/jquery/jquery-wp-content). To preview the site locally, first follow the [instructions there](https://github.com/jquery/jquery-wp-content)to set up a local version of the jQuery WordPress network. Then, clone this repo and run the following steps (node.js required).
48
+
Bu site jQuery ağının bir sitesidir ve [jquery-wp-content](https://github.com/jquery/jquery-wp-content) tarafından kontrol edilir. Yerel ağ üzerinde çalışmak için ilk olarak jQuery Wordpress ağı kurulur. [başlangıç](https://github.com/jquery/jquery-wp-content)Sonra, repo klonlanır ve aşağıda yer alan adımlar takip edilir. (node.js gereklidir.).
49
49
50
50
1.`npm install`
51
51
2.`cp config-sample.json config.json`
52
-
3.Edit config.json to use the username and password for your local WordPress network
52
+
3. config.json dosyası yerel ağ üzerinde çalışacak wordpress ağı için kullanıcı adı ve şifre düzeltilir.
53
53
4.`grunt`
54
54
55
-
## How Can I Help?
55
+
## Nasıl yardımcı olabilirim?
56
56
57
-
We encourage contribution from anyone. For more comprehensive documentation on how to get involved, please read our [contributing guide](http://learn.jquery.com/contributing).
57
+
Herkes learn.jquery.com'a yardımcı olabilir. Daha kapsamlı belgelerle katkı sağlamak için lütfen [katkıda bulunma rehberini](http://learn.jquery.com/contributing) okuyunuz.
Copy file name to clipboardExpand all lines: page/events/triggering-event-handlers.md
+10-13Lines changed: 10 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -1,28 +1,25 @@
1
1
---
2
-
title : Triggering Event Handlers
3
-
level: intermediate
2
+
title : Olay işleyicileri tetikleme
3
+
level: orta
4
4
source: http://jqfundamentals.com/legacy
5
5
attribution:
6
-
- jQuery Fundamentals
6
+
- jQuery Temelleri
7
7
---
8
8
9
-
jQuery provides a way to trigger the event handlers bound to an element without any user interaction via the
10
-
`.trigger()`method.
9
+
jQuery kullanıcıyla bir etkileşim sağlamadan bir öğeye bağlı olay işleyicileri tetiklemek için bir yol sağlar.
10
+
`.trigger()`yöntemi.
11
11
12
-
## What handlers can be .trigger()'d?
12
+
## Hangi işleyiciler .trigger() olabilir?
13
13
14
-
jQuery's event handling system is a layer on top of native browser events. When an event handler is added using
15
-
`.on( "click", function() {...} )`, it can be triggered using jQuery's `.trigger( "click" )` because jQuery stores a
16
-
reference to that handler when it is originally added. Additionally, it will trigger the JavaScript inside the
17
-
`onclick` attribute. The `.trigger()` function cannot be used to mimic native browser events, such as
18
-
clicking on a file input box or an anchor tag. This is because, there is no event handler attached using jQuery's
19
-
event system that corresponds to these events.
14
+
JQuery olay işleme sistemi yerli tarayıcı olayları için üst bir tabakadır. Bir olay işleyicisi kullanılarak `.on( "click", function() {...} )` eklendiğinde, bu jQuery'e ait `.trigger( "click" )` ile tetiklenebilir çünkü orjinal olarak ilave edildiği zaman, jQuery işleyicisi bu referansı depolar.
15
+
16
+
Ayrıca, bu JavaScript içinde yer alan `onclick` elementini de tetikleyecektir. `.trigger()` fonksiyonu yerel tarayıcıyı taklit etmek için kullanılamaz, bir dosya giriş kutusunu veya bir tutturucu etiketi tıklamak gibi. Bunun nedeni, burada bu olaylara karşılık jQuery olay sistemini kullanacak bağlı bir olay işleyicisi yoktur.
0 commit comments