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 j

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: $("in

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

2007-02-06 Thread Guntur N. Sarwohadi
y TextArea Dummy InputText $(document).ready(function() { $('ul').Sortable({ accept: "listitem" }); }); am I doing something wrong? I hope it's just

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

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]&g

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
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(""); $("#feedback") .load("test.php", p); });

[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). I

Re: [jQuery] Clearing all form field values

2006-12-28 Thread Guntur N. Sarwohadi
*doh*.. i should've thought that way.. heheh.. that should definately work i get too jquery oriented some times ^^ [g] On 12/28/06, Kelvin Luck <[EMAIL PROTECTED]> wrote: Does this work (presuming the form has an id of myForm)? $('#myForm')[0].reset(); Andy Matthews wrote: > I'm going to be

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

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 th

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

2006-11-24 Thread Guntur N. Sarwohadi
4/06, 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

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

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

Re: [jQuery] Plugin Release: Tooltip

2006-11-06 Thread Guntur N. Sarwohadi
Very slick! Me LOVES it!@Andrew: what error do you have in IE6? Out of memory bla bla bla?[g]On 11/6/06, Andy Matthews < [EMAIL PROTECTED]> wrote:I get an error in IE6/PC on your demo page.-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]OnBehalf Of "Jörn Zaefferer"Sent:

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

Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
could help. 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. Sar

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 t

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
igure which one to control! I did a lot of ... ..   stuff, 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.. yea

Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
nyone know 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] 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 10/30/0

Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
Flash.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 i access the flash object://function to capture flashgetFlashMovi

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:oFla

[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/