Re: [jQuery] Local XML

2007-03-10 Thread Francesco Sullo
I suppose that if you write: function handleResponse(data) { var xml = $(data.responseXml) } the xml var is a DOM xml file. But I don't try it. Cheers, -- Francesco Dmitrii 'Mamut' Dimandt ha scritto: I need to load and process a local XML file from a page displayed locally.

Re: [jQuery] javascript object not array?

2007-03-09 Thread Francesco Sullo
d is an Object d.Products is an Array You could test you objects using the constructor property. If you try: alert (d.constructor) you could see that it shows a result different from alert(d.Products.constructor) --Francesco [EMAIL PROTECTED] ha scritto: I'm confused. Why does: var

Re: [jQuery] simple - focusing on an input

2007-03-09 Thread Francesco Sullo
Use: $(#orderFinder input).val('')[0].focus() --Francesco Paul ha scritto: I'm trying to focus the cursor in a text box at the end of a simple animation, and it won't. The cursor shows up temporarily in the box, then flits away... $(#orderFinder).SlideToggleUp(250, null,

Re: [jQuery] checking created items again via DOM

2007-03-08 Thread Francesco Sullo
Hi, you could try the following: linClick = function () { $('.lin').unbind('click').click( function(){ $(#sublevels).append(span class='lin'+split[1]+/spanbr/) linClick() } ) } linClick() --Francesco phplord ha scritto: Hi; I got an

[jQuery] jQuick 1.3 adds support for LABELs in Safari

2007-03-07 Thread Francesco Sullo
Hi all, today I released jQuick 1.3. This new version adds support for LABELs in Safari. Cheers, Francesco Sullo http://jquick.sullof.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] jQuick 1.3.1 improves support for LABELs in Safari

2007-03-07 Thread Francesco Sullo
After the first public tests of jQuick I improved the support for label in Safari. In fact, in 1.3.1, the following example works well even in Safari: $.FORM({}, $.LABEL({'for': 'one'}, Label ), $.INPUT({id: one', type: checkbox', onclick: alert(1)}) ) Cheers, Francesco

[jQuery] jQuick 1.2 released and beta 4 preview of PassPack

2007-03-03 Thread Francesco Sullo
:'setValues()'}) ); jQuick preserves spaces. Download it at http://jquick.sullof.com Francesco Sullo [EMAIL PROTECTED] www.sullof.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] A little bug fixed in the beta 4 preview of PassPack

2007-03-03 Thread Francesco Sullo
:'one'}).click(setValues) ).bind('submit',function(){return false;}); you could write: $.FORM({onsubmit:'return false;'}, $.LABEL({'for':'one'},Digit ), $.INPUT({id:'one',onclick:'setValues()'}) ); jQuick preserves spaces. Download it at http://jquick.sullof.com Francesco Sullo [EMAIL PROTECTED

Re: [jQuery] Q: best way to create dynamic content?

2007-02-28 Thread Francesco Sullo
I suggest to use jQuick. In your case you can create the code using: $('#myAnchor').append( $.DIV( id: myIdVar, 'class': myClassvar} ) jQuick is at http://jquick.sullof.com/ In the next days I will release a new powered version. nrwsteff ha scritto: short question: what is the

Re: [jQuery] ANNOUNCE: Alpha 2 of Ext 1.0 for jQuery is Available

2007-02-25 Thread Francesco Sullo
Hi Rey, your Alpha 2 is one of the more exciting javascript libraries I have seen. Great! Rey Bango ha scritto: Guys, Alpha 2 of Ext 1.0 for jQuery is now available for download. You can find out more details here: http://www.yui-ext.com/forum/viewtopic.php?t=3084 and download Ext 1.0 for

Re: [jQuery] ANNOUNCE: Alpha 2 of Ext 1.0 for jQuery is Available

2007-02-25 Thread Francesco Sullo
You are right. Alpha is great, but is too big for real web applications... Mikael Noone ha scritto: This is supercewl. Although, to bulky for me to use on webpages. 372kb plus jquery.. i just say, wow... that´s big! and then additional javascript code for the functions, html, css. plus

Re: [jQuery] New plugin: jQuick Tag Creator

2007-02-18 Thread Francesco Sullo
jQuery.TAG would work? Andreas On Feb 17, 2007, at 21:27, Benjamin Sterling wrote: Sweet, I may be switching what I am using now to this plugin. On 2/17/07, *Francesco Sullo* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Yes. Differently from other quick tag generators, jQuick

[jQuery] jQuick Tag Creator 1.1 released

2007-02-18 Thread Francesco Sullo
Hi all. Today I improved jQuick. The new version 1.1 supports events if passed as attributes, even with IE. For example, instead of $.FORM({}, $.LABEL({'for':'one'},Digit ), $.INPUT({id:'one'}).click(setValues) ).submit(function(){return false;}); you could write: $.FORM({onsubmit:'return

Re: [jQuery] jQuick Tag Creator 1.1 released

2007-02-18 Thread Francesco Sullo
another DIV) using this code from your site: $.DIV({'class':'big'}, $.SPAN({id:'one','class':'ps'}, 'Hello Joe', $.I({},'!') ) ); how would I go about doing it? Rey Francesco Sullo wrote: Hi all. Today I improved jQuick. The new version 1.1 supports events if passed

[jQuery] New plugin: jQuick Tag Creator

2007-02-17 Thread Francesco Sullo
Hi all, I want to announce a new plugin for jQuery. I hope you like it. Cheers, Francesco *** jQuick Tag Creator for jQuery http://jquick.sullof.com *How it works * Suppose you want to obtain the following html code: div class=big span id=one class=psHello Joei!/i/span /div

[jQuery] New plugin: jQuick Tag Creator

2007-02-17 Thread Francesco Sullo
Yes. Differently from other quick tag generators, jQuick is jQuery specific. This is an advantage because anything you can do with jQuery is possible with jQuick methods. Is it possible to do things like var storage_for_future; $.DIV({'class':'big'}, storage_for_future =