Re: [jQuery] jQuery Powered Sites - New Sites Added

2007-03-28 Thread Guntur N. Sarwohadi
Hi,.. I'm also using jQuery heavily for the site I'm working for: BallOfDirt.com. Might as well add that too :) Guntur N. Sarwohadi On 3/22/07, SeViR [EMAIL PROTECTED] wrote: Mmmm, have anybody taken in account that *Mozzilla Addons* site is using jQuery+Thickbox? I just watch it :-P

Re: [jQuery] can't edit textarea / input texts inside a sortable

2007-02-07 Thread Guntur N. Sarwohadi
ah.. great! it worked! thanks, Guntur N. Sarwohadi On 2/7/07, Avi Mehta [EMAIL PROTECTED] wrote: hi, by default, the sortable catches all the click events. so if you want to edit them, you can assign a onclick event which in turn calls focus(). here is the code: $(input).click( function

[jQuery] can't edit textarea / input texts inside a sortable

2007-02-06 Thread Guntur N. Sarwohadi
() { $('ul').Sortable({ accept: listitem }); }); /script am I doing something wrong? I hope it's just me ^^ thanks, Guntur N. Sarwohadi ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] load won't post params

2007-01-16 Thread Guntur N. Sarwohadi
hi Jörn ok, here's my code: $(document).ready(function() { p = {}; p[id] = test; p[value] = this is only a test; $(p).bind(click, function() { $(this) .before(div id='feedback' style='background-color:#0f0'/div); $(#feedback)

Re: [jQuery] load won't post params

2007-01-16 Thread Guntur N. Sarwohadi
just recently? ok, i'll check. thanks mike :) On 1/16/07, Mike Alsup [EMAIL PROTECTED] wrote: I like using the load method a lot, and with jQuery 1.1, I've noticed that now it doesn't post the object params parameter to This has been fixed in SVN.

Re: [jQuery] load won't post params

2007-01-16 Thread Guntur N. Sarwohadi
I already downloaded the latest revision, 1073. but still found the fn.apply is not a function error after calling load(url, data). is this the right revision with that fix for load? sorry for being stupid. thanks, [g] On 1/16/07, Guntur N. Sarwohadi [EMAIL PROTECTED] wrote: just recently

Re: [jQuery] load won't post params

2007-01-16 Thread Guntur N. Sarwohadi
ah.. ok.. i know i was doing something stupid. :) thanks again mike [g] On 1/16/07, Mike Alsup [EMAIL PROTECTED] wrote: On 1/16/07, Guntur N. Sarwohadi [EMAIL PROTECTED] wrote: I already downloaded the latest revision, 1073. but still found the fn.apply is not a function error after calling

[jQuery] load won't post params

2007-01-15 Thread Guntur N. Sarwohadi
Hi all, I like using the load method a lot, and with jQuery 1.1, I've noticed that now it doesn't post the object params parameter to url. How should I use the params now? I've checked through firebug and usually (jQuery 1.0.4) it shows the post variables but now it doesn't (so no params sent).

Re: [jQuery] Clearing all form field values

2006-12-28 Thread Guntur N. Sarwohadi
from what i know, the closest is using the 'each' method.. like: $(form) .children() .each(function() { $(this).val(); }); or something close to that. hope that helps [g] On 12/28/06, Andy Matthews [EMAIL PROTECTED] wrote: I'm going to be submitting a form via AJAX and I'd like to be

Re: [jQuery] Get the Firebug 1.0 Beta!

2006-12-04 Thread Guntur N. Sarwohadi
both sites work fine.. no errors nor exceptions whatsoever.. using FB2.0 btw.. this tool is. BADA$$!.. very very very nice tool.. can't work without it.. ever! :D cheers Guntur N. Sarwohadi On 12/5/06, Matt Stith [EMAIL PROTECTED] wrote: getk2 works fine for me too. Same thing as mike

Re: [jQuery] Ajaxstop() having problems in IE?

2006-11-24 Thread Guntur N. Sarwohadi
, Jörn Zaefferer [EMAIL PROTECTED] wrote: Guntur N. Sarwohadi schrieb: Hmm.. weird as..? please let me know, i might learn something from you, especially i'm particularly new to js and jquery :) You should add any ajax handlers before calling $.ajax, not inside of the success callback. You code

Re: [jQuery] Ajaxstop() having problems in IE?

2006-11-23 Thread Guntur N. Sarwohadi
Oh, btw.. and i notice that both files (htm and php) needs to be accessed through a webserver to make that particular error show. I tried accessing the htm as a file in a browser and although it doesn't spit out the error, it just wont work (a 'silent' error :p) cheers, Guntur N. Sarwohadi

Re: [jQuery] Ajaxstop() having problems in IE?

2006-11-23 Thread Guntur N. Sarwohadi
Hmm.. weird as..? please let me know, i might learn something from you, especially i'm particularly new to js and jquery :) thanks! On 11/24/06, Jörn Zaefferer [EMAIL PROTECTED] wrote: Guntur N. Sarwohadi schrieb: Oh, btw.. and i notice that both files (htm and php) needs to be accessed

Re: [jQuery] Access to flash object

2006-11-01 Thread Guntur N. Sarwohadi
Ooh.. me want jquery port of UFO 3.x.. thank you :)[g]On 11/2/06, Wil Stuckey [EMAIL PROTECTED] wrote:On 10/31/06, Sam Sherlock [EMAIL PROTECTED] wrote: UFO Version 3.30 is coming soon sneek peak at http://www.refunk.com/ufo/ufo.js I'm actually working on a jQuery port of UFO 3.xI've got a

[jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
) but it doesn't work. Sorry if someone has come up to this discussion already, i couldn't find a way to search the list of mails from this maillist Thanks!best regards,Guntur N. Sarwohadi ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
ok,..this is how i access the flash object://function to capture flashgetFlashMovie = function(n) { if(isIE) { return window[n]; } else { return document[n]; } }//implementation:var oFlash = getFlashMovie(someflashmovie);//call flash ExternalInterface registered method:oFlash.somemethod();What i

Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
wf has a method registered with ExternalInterface (ie. fmethod), then you can call it easily by:oFlash.fmethod()that's it! so jquery rocks! just need to tinker the _expression_ in $() and everything works just ok :D cheers,Guntur N. SarwohadiOn 10/30/06, Guntur N. Sarwohadi [EMAIL PROTECTED] wrote: ok,..this is how

Re: [jQuery] new plugin cssHover [ui checks, radio buttons and more!]

2006-10-30 Thread Guntur N. Sarwohadi
Tried it in both firefox 2.0 and IE6.0.. works and looks great!.. flicker is probably because your internet conn not fast enough to load the 'over' images.. like what i've experienced :).. when the images are cached, it doesn't flicker anymore, right? great work Gilles!Guntur N. SarwohadiOn

Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
the right tags to insert flash objects? using object only or embed? cheers,Guntur N. Sarwohadi ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
to control! I did a lot of object... embed .. /objectstuff, and mostbrowsers seem to like the embed. hmm! (I don't use IE)On 10/30/06, Guntur N. Sarwohadi [EMAIL PROTECTED] wrote: but I'd would like not to use object embed tags as they are just messy. Hmm.. yeah... the nested object embed

Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
Why do you want to use jQuery for this? Why not? :) ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
does it really? hmmm.. can you list any other advantages? thanks!On 10/31/06, Matt Stith [EMAIL PROTECTED] wrote:Because it would be easier/faster not to. On 10/30/06, Guntur N. Sarwohadi [EMAIL PROTECTED] wrote: Why do you want to use jQuery for this? Why

Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
. jQuery takes a relatively long time to find elements compared to using native functions, so using it just because you can use it is a bad idea. On the other hand, if you wanted to wrap jQuery around the flash object (why???), you could find it with jquery.On 10/30/06, Guntur N. Sarwohadi [EMAIL