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
example:
http://preview.addons.mozilla.org/en-US/firefox/addons/previews/1730



Rey Bango escribió:
 New sites added:

 Curse Gaming
 ValidHTML
 Flashr Flickr Wrapper

 http://docs.jquery.com/Sites_Using_jQuery

 Keep the submissions coming but please, please provide a good  short
 description of what the site does so I can put it into the listing.

 Also, please be sure to mention where the site uses jQuery.

 Thanks,

 Rey





--
Best Regards,
José Francisco Rives Lirola sevir1ATgmail.com

SeViR CW · Computer Design
http://www.sevir.org

Murcia - Spain


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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()
   {
 $(this).focus()
   }
  );

avi



--
--
Visit me at http://jodhpuriguy.com
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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

2007-02-06 Thread Guntur N. Sarwohadi

Has anyone else notice this? I have lists of textareas and input texts which
is sortable, the sortable plugin is nice and all but then I couldn't get the
textareas/input texts editable?

here's my code

ul style=list-style:none
   li class=listitem style=border: 3px solid #f00;
background-color: #ccc; padding: 20px;
   div
   h3Item #1/h3
   pDummy TextArea/p
   textarea/textarea
   pDummy InputText/p
   input type=text/
   /div
   /li
   li class=listitem style=border: 3px solid #f00;
background-color: #ccc; padding: 20px;
   div
   h3Item #2/h3
   pDummy TextArea/p
   textarea/textarea
   pDummy InputText/p
   input type=text/
   /div
   /li
   li class=listitem style=border: 3px solid #f00;
background-color: #ccc; padding: 20px;
   div
   h3Item #3/h3
   pDummy TextArea/p
   textarea/textarea
   pDummy InputText/p
   input type=text/
   /div
   /li
   /ul
   script type=text/javascript
   $(document).ready(function() {
   $('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)
   .load(test.php, p);
   });
   });

in the body, there is only a paragraph (to click), while the php is only
plain echo stuff..

i've attached screenshots of both behaviors (one in jquery 1.1 and the other
1.0.4)..

did the load function change somehow in jquery 1.1?

thanks!
[g]


loaderrorjq11.png
Description: PNG image


loadgoodjq104.png
Description: PNG image
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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.

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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? 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.

 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/



___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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 load(url, data). is
this
 the right revision with that fix for load? sorry for being stupid.

No, it's not in 1073.  I just fixed it this morning.  You can get ajax.jshere:

http://jquery.com/dev/svn/trunk/jquery/src/ajax/ajax.js?format=txt

Or you can temporarily patch your own jQuery file using the
work-around found here:

http://jquery.com/discuss/2007-January/021767/

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[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). Is this
intentionally a feature? or I need to use another ajax method instead of
load (which i hope not.. because this means a lot of recoding :))?

thanks
[g]
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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 able to
clear
all of the fields afterwards. I could obviously do it by referencing each
field manually, but I'm wondering if it's possible to do something like
this:
$('#myForm').clearFields();

or something to that effect. I just want to reset all fields to their
original values. Is this possible using jQuery, without having to do each
field individually?

!//--
andy matthews
web developer
certified advanced coldfusion programmer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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, exception is thrown, and
cought by FB.

On 12/4/06, Mike Alsup [EMAIL PROTECTED]  wrote:

  www.linkdup.com - works fine
  www.getk2.com - crashes when firebug is enabled

 Hi Sam,

 I didn't have any trouble with either of those sites.  K2 throws a js
 exception but Firebug handles it just fine.

 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/



___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/



___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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

2006-11-24 Thread Guntur N. Sarwohadi

Oh.. ok ok.. i understand your point. so i think it's also best to just use
either the success parameter in $.ajax or the ajax listeners (ajaxStop,
ajaxStart, etc) and not both? In a way, i realize it's also redundant to add
the success parameter just to call ajaxListener..

thanks!

On 11/24/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 success callback. You code worked because the ajaxStop event is
triggered after the success callback, but you shouldn't rely on that.
I'll upload my modified version, if that helps.

--
Jörn Zaefferer

http://bassistance.de


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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

On 11/23/06, Guntur N. Sarwohadi [EMAIL PROTECTED] wrote:


Im also experiencing the same problem.. here is a dummy page for a demo of
the bug. I think you'll need MS Script Debugger to have the  'null' is null
or not an object error show, though..

cheers
Guntur N. Sarwohadi

On 11/23/06, Jörn Zaefferer [EMAIL PROTECTED] wrote:

 tomás pollak schrieb:
  Hello,
 
  I've normally had no problems hiding the spinner/loading on IE for
  ajax calls. However, this time I just can't get it to work, it throws
  me a  'null' is null or not an object error when all AJAX calls have

  finished. Ajaxstart(), hovever, has no issues. I've tried everything,
  even checking if it is a IE CSS/render problem (position: fixed and
  sorts).
 
  Does anyone have a clue as to what can be the problem? I'm using
  JQuery 1.0.3 compressed, and the fader has no issues on Firefox.
 
 Could you put together a simple page that demonstrates the problem? That
 would be a great help to fix this bug, for real this time.

 --
 Jörn Zaefferer

 http://bassistance.de


 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/




___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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 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)
Ok, thanks. Your code is pretty weird, but nonetheless, it shows the
problem pretty clearly. If you find anything else that may help, just
tell me.

--
Jörn Zaefferer

http://bassistance.de


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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 working port of UFO 2.0 sans a few features that we did not need here. I would be willing to post it if anybody is interested.-Wil

___jQuery mailing listdiscuss@jquery.com
http://jquery.com/discuss/
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
Does anyone know how to access a flash object with jquery? I have a flash movie with a function I need to call from js. It already has a function registered as externalInterface and Im able to call it using regular js. I would like to know how in jquery. I tried doing the regular $(_expression_) 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 tried with jQuery was to cut the capturing function and straight to implementation:
var oFlash = $(someflashmovie);but calling oFlash.somemethod(); now, doesnt work :(any ideas?Guntur N. SarwohadiOn 10/30/06, 
Jörn Zaefferer [EMAIL PROTECTED] wrote:
 Does anyone know how to access a flash object with jquery? I have a flash movie with a function I need to call from js. It already has a function registered as externalInterface and Im able to call it using regular js. I
 would like to know how in jquery. I tried doing the regular $(_expression_) 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
 maillistCould you post your regular code? That would help.--Jörn Zaeffererhttp://bassistance.de--Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer___jQuery mailing list
discuss@jquery.comhttp://jquery.com/discuss/
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
Hah.. found the solution..to access the flashobject using these combination of tags:object id=flashobject src="">
param/...embed name=flashobject src="">/objectand to access with jquery, use this:var oFlash = $(object#flashobjectembed);
and as long as f.swf 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 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 tried with jQuery was to cut the capturing function and straight to implementation:
var oFlash = $(someflashmovie);but calling oFlash.somemethod(); now, doesnt work :(any ideas?Guntur N. Sarwohadi
On 10/30/06, 
Jörn Zaefferer [EMAIL PROTECTED] wrote:

 Does anyone know how to access a flash object with jquery? I have a flash movie with a function I need to call from js. It already has a function registered as externalInterface and Im able to call it using regular js. I
 would like to know how in jquery. I tried doing the regular $(_expression_) 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
 maillistCould you post your regular code? That would help.--Jörn Zaefferer
http://bassistance.de--Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer___
jQuery mailing list
discuss@jquery.comhttp://jquery.com/discuss/


___
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/06, Rey Bango [EMAIL PROTECTED] wrote:
I tested it in IE7 and it looks great!ReyWebunity | Gilles van den Hoven wrote:
 Hi guys, i've made a new plugin and added it to SVN. It is still in beta (== bugs) so don't use yet untill fully tested. This plugin actually started out as a remake of the CRIR (Checkbox Radio
 Input Replacement) code found on the websites of Chris Erwin, Yeduha Kratz and Kawika.org. I wanted to make a version which used the power of jQuery to create thesame effects, but then a little bit better. When i
 finished my early draft code, it worked on both CHECKBOX and RADIO elements, and was 4.9kb in size (uncompressed). Right about then, i got the idea to combine my old jButton code (which used IMG tags and SRC
 attributes to create simple buttons) with this code, and code a solution which could be used to add a :hover class to almost any element. Well, here you have it; 17.3Kb in size, 4kb compressed and even smaller
 GZIP'd, an all-in-one solution to fix most of your problems. Demo page: http://gilles.jquery.com/cssHover/ Please test and let me know if there are any bugs. If not, i'll commit
 it to SVN. -- Gilles ___ jQuery mailing list discuss@jquery.com 
http://jquery.com/discuss/___jQuery mailing listdiscuss@jquery.com
http://jquery.com/discuss/
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
but I'd would like not to use object embed tags as they are just messy.
Hmm.. yeah... the nested object embed was generated by flash. It was an attempt to make the flash object work on most browsers.. hmm.. if this is a bad way to do things.. i'll have to find a better way.. or does anyone 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] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
found this article... maybe this might light things up:http://www.ambience.sk/flash-valid.htmand
http://www.alistapart.com/articles/flashsatay/so i guess to make things valid.. no longer use embed :)On 10/31/06, Ⓙⓐⓚⓔ 
[EMAIL PROTECTED] wrote:You want both... it's just you have to figure which one 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 was generated by flash. It was an
 attempt to make the flash object work on most browsers.. hmm.. if this is a bad way to do things.. i'll have to find a better way.. or does anyone 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/--Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ___jQuery mailing list
discuss@jquery.comhttp://jquery.com/discuss/
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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 not? :)

___jQuery mailing listdiscuss@jquery.com

http://jquery.com/discuss/

___jQuery mailing listdiscuss@jquery.com
http://jquery.com/discuss/
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
heheh ok then.. thanks again!On 10/31/06, Matt Stith [EMAIL PROTECTED] wrote:
Well for one, you wouldnt have to keep emailing us. :)I wouldnt recommend using the approch you were using (window[n] = depricated i belive), Im not sure what else you could try, but im sure a little research 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. Sarwohadi
 [EMAIL PROTECTED] wrote:
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 not? :)

___jQuery mailing listdiscuss@jquery.com

http://jquery.com/discuss/

___jQuery mailing listdiscuss@jquery.com


http://jquery.com/discuss/

___jQuery mailing listdiscuss@jquery.com

http://jquery.com/discuss/

___jQuery mailing listdiscuss@jquery.com
http://jquery.com/discuss/
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/