Skip to content

Commit b6606dc

Browse files
author
Oğuzhan Taşcı
committed
how-jquery-works çeviri tamamlandı
1 parent 3bbc4fd commit b6606dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

page/about-jquery/how-jquery-works.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ Bu hatanın nedeni kod `$.get()` için ikinci parametre olarak `myCallBack( para
191191

192192
#### Doğru
193193

194-
`myCallBack()`fonksiyonunu parametrelerle ertelenir ve sarmalayıcı olarak bir anonim fonksiyon kullanılabilir. Note the use of `function() {`. The anonymous function does exactly one thing: calls `myCallBack()`, with the values of `param1` and `param2`.
194+
`myCallBack()`fonksiyonunu parametrelerle ertelenir ve sarmalayıcı olarak bir anonim fonksiyon kullanılabilir.`function() {` kullanımına dikkat edilmelidir. Anonim fonksiyon tam olarak bir şey yapar: `param1` ve `param2` ile `myCallBack()` fonksiyonunu çağırır.
195195

196196
```
197197
$.get( "myhtmlpage.html", function() {
@@ -201,4 +201,4 @@ $.get( "myhtmlpage.html", function() {
201201
});
202202
```
203203

204-
When `$.get()` finishes getting the page `myhtmlpage.html`, it executes the anonymous function, which executes `myCallBack( param1, param2 )`.
204+
`$.get()` `myhtmlpage.html` işlemini bitirdiği zaman, o `myCallBack( param1, param2 )` çalıştıran anonim fonksiyonu çalıştırır.

0 commit comments

Comments
 (0)