[jQuery] Re: Calling PHP Functions from jQuery?

2008-07-14 Thread Mario Wolff
On 14 Jul., 16:11, Yavuz Bogazci [EMAIL PROTECTED] wrote: is it possible to call php functions from jquery? My way: PHP: ?php function utf8_encode_recursive($arr){ array_walk_recursive($arr,create_function('$item, $key','$item=utf8_encode($item);')); return $arr; }

[jQuery] Re: Different between this and $(this)

2008-06-26 Thread Mario Wolff
Hi! Very simple: this is the (DOM)-object and $(this) is a jquery-object containing the (DOM)-object. To use jQuery methods you need a jQuery object! Regars, Mario On 26 Jun., 15:02, x-herbert [EMAIL PROTECTED] wrote: Hi jQueries; what is the different between this and $(this) ?? I try

[jQuery] Re: Write binary data (from server) is possible with Ajax?

2008-06-26 Thread Mario Wolff
Hi! In short: You can't! A possible way: Do a HEAD request first, check the content-type as you do, if it's usable data load it with a GET request, if it's downloadable data open the same url in a new window. The browser will see that it is an oktet-stream and will open download dialog! Regards,

[jQuery] Documentation of datatype map

2007-11-30 Thread Mario Wolff
; $_GET['key'][1]=bar; in PHP. Maybe that hint is useful for someone or get's included to the documentation. Regards, Mario Wolff