[jQuery] Re: 45+ New jQuery Techniques For Good User Experience

2009-01-19 Thread Dirceu Barquette
Great job!!! Thanks Dirceu Barquette 2009/1/19 Michael Smith smi...@gmail.com Just saw this through digg, and I don't think it's been sent here before. I thought a few people might find it interesting: http://www.smashingmagazine.com/2009/01/15/45-new-jquery-techniques-for-a-good-user

[jQuery] Re: jQuery way

2009-01-05 Thread Dirceu Barquette
Hi Brian, This is a real code. I can't modify it cause not my code: http://pastebin.com/m2e4cf3ea Thanks for help! Dirceu Barquette

[jQuery] jQuery way

2009-01-04 Thread Dirceu Barquette
Hi all! Is there better way? var elem = $('#container')[0]; var arr = [header,content,footer]; jQuery.each(elem.childNodes,function(k,v) { if (jQuery.inArray(v.id, arr) 0) { $(v).empty(); } }) thanks Dirceu Barquette

[jQuery] Re: jQuery way

2009-01-04 Thread Dirceu Barquette
Thanks a lot! But it doesn't works... :-( I get a really dirty code to add modules. I wish inject a pretty good jQuery code, but is impossible!!! thanks your attention! Dirceu Barquette 2009/1/4 John Resig jere...@gmail.com Maybe: $(#container).children().not(#header, #content, #footer

[jQuery] Re: jQuery way

2009-01-04 Thread Dirceu Barquette
Not works too... Thank you. Dirceu Barquette 2009/1/4 Kean shenan...@gmail.com This might be shorter. $(#container :not(#header, #content, #footer)).empty(); - Kean Tested with Sizzle but not jQuery 1.2.6 On Jan 4, 11:08 am, John Resig jere...@gmail.com wrote: Maybe

[jQuery] Re: jQuery way

2009-01-04 Thread Dirceu Barquette
work... I don't know why, but can help me in the future. You know for my poor english. I really appreciate your help to explain this problem. We can chat at gmail if you wish... Very special thanks to all! Dirceu Barquette 2009/1/5 Ricardo Tomasi ricardob...@gmail.com Both ways do work

[jQuery] Re: jQuery UI 1.6rc3 is out

2009-01-02 Thread Dirceu Barquette
Very good job!! Fantastic!!! Amazing Thank you! Dirceu Barquette 2009/1/1 Nathan Maves nathan.ma...@gmail.com great job guys! is there going to be an easy way to view the source of the new functional demos? On Wed, Dec 31, 2008 at 8:03 PM, Richard D. Worth rdwo...@gmail.comwrote

[jQuery] Re: question

2008-12-27 Thread Dirceu Barquette
has made a good job to free software. It's important give my acknowledgement and I don't think about disadvantages. You know? Keep in touch! Dirceu Barquette 2008/12/27 Michael Geary m...@mg.to Hi Dirceu, I'm glad that was helpful. Yes, of course I'd be delighted to have you mention my name

[jQuery] Re: question

2008-12-25 Thread Dirceu Barquette
Hi Mike, Fantastic!!! This is very very good!!! I'll publish this CMS at sourceforge soon, and if you agree your name will be appear in special thanks. Ok? This is the most important contribution form my project. Thank you very much! Dirceu Barquette 2008/12/24 Michael Geary m...@mg.to I

[jQuery] Re: question

2008-12-24 Thread Dirceu Barquette
WOW!!! .toSource is amazing!!! thank you again Dirceu Barquette 2008/12/23 Michael Geary m...@mg.to So you have a list of the methods of an object and you want to find out what the parameters to each method are, is that right? There are three ways you can do this: 1) In Firefox, you

Re: R: [jQuery] Merry Xmass

2008-12-24 Thread Dirceu Barquette
4U2 from Brazil!! Dirceu Barquette 2008/12/24 diego valobra piro...@yahoo.it Merry Xmas to all the _jQueryans_ of the world from Italy :) Diego Valobra --- *Mer 24/12/08, Lukas Polak polak.luka...@gmail.com* ha scritto: Da: Lukas Polak polak.luka...@gmail.com Oggetto: [jQuery] Merry

[jQuery] question

2008-12-23 Thread Dirceu Barquette
Hi, Has anybody a solution? showing a few jQuery methods : var Typeof = {}; for (v in $) { Typeof = typeof $[v]; $('divspan'+Typeof+' /spanspan '+v+' /span/div').appendTo('body'); } Is it possible showing parameters list for each method above? thank you!!! Dirceu Barquette

[jQuery] Re: question

2008-12-23 Thread Dirceu Barquette
Thanks. You are right! But, do you have any suggest? Thank you! Dirceu Barquette 2008/12/23 MorningZ morni...@gmail.com Advice: more specific subject lines than the ultra vague and useless question will get you better and faster help On Dec 23, 6:10 am, Dirceu Barquette dirceu.barque

[jQuery] Re: question

2008-12-23 Thread Dirceu Barquette
How can I do this? This is my question! Thank you!!! Dirceu Barquette 2008/12/23 Alexandre Plennevaux aplennev...@gmail.com did you try listing the arguments array within each detected function ? On Tue, Dec 23, 2008 at 1:18 PM, Dirceu Barquette dirceu.barque...@gmail.com wrote: Thanks

[jQuery] Re: question

2008-12-23 Thread Dirceu Barquette
anything good! realy thank you!!! ;-) Dirceu Barquette 2008/12/23 Michael Geary m...@mg.to So you have a list of the methods of an object and you want to find out what the parameters to each method are, is that right? There are three ways you can do this: 1) In Firefox, you can call

[jQuery] params list

2008-12-22 Thread Dirceu Barquette
Hi, this code return function list: var o = {} for (v in $) { o[v] = $[v]; var Typeof = typeof $[v]; $('divspan'+Typeof+' /spanspan '+v+' /span/div').appendTo('body'); } How to return option list for each class above? thanks Dirceu Barquette

[jQuery] Re: params list

2008-12-22 Thread Dirceu Barquette
sorry, I think this is better code for the eg: var Typeof = {}; for (v in $) { Typeof[v] = typeof $[v]; $('divspan'+Typeof[v]+' /spanspan '+v+' /span/div').appendTo('body'); } But, how to list parameters [and,or] options for each function? thanks again!! Dirceu Barquette 2008/12/23

[jQuery] Re: libraries

2008-12-17 Thread Dirceu Barquette
! 2008/12/17 Olivier Percebois-Garve perceb...@gmail.com Don't worry with your english, I'm not a native. So you want to know how to make json request ? Do you still have a question, or do you want just to discuss stuffs ? On Wed, Dec 17, 2008 at 5:21 PM, Dirceu Barquette dirceu.barque

[jQuery] Re: libraries

2008-12-17 Thread Dirceu Barquette
OH!! I've forgotten the magic word: please :-) 2008/12/17 Dirceu Barquette dirceu.barque...@gmail.com I think the thread just ended. :D If you have some time, download and comment my plugins: http://jqtreevial.sourceforge.net And: http;//isabeladraw.sourceforge.net (official versioning

[jQuery] Re: libraries

2008-12-17 Thread Dirceu Barquette
and then one named insert_node. confusing. other than that, nice, very nice, for somebody that is just learning english. you've ambitious scripts. On Wed, Dec 17, 2008 at 5:49 PM, Dirceu Barquette dirceu.barque...@gmail.com wrote: I think the thread just ended. :D If you have some time

[jQuery] Re: missing ; before statement at DOCTYPE declaration

2008-12-17 Thread Dirceu Barquette
Ricardo, I sow this error in my app. If an PHP message (e_warning, e_error) was sent by the server, it comes in a header and make the code unresponsive. Hope help you. 2008/12/17 Ricardo Tomasi ricardob...@gmail.com Are you serving this page as application/xml+xhtml ? I believe the xml

[jQuery] Re: libraries

2008-12-17 Thread Dirceu Barquette
. Again, sorry my english... I hope you understand the semanthic of my words. Thanks, Dirceu Barquette 2008/12/17 Olivier Percebois-Garve perceb...@gmail.com Aptana does a good job for auto completion. I you weant to learn the api for yourself, I think that visualjquery.comis excellent, I almost

[jQuery] Re: libraries

2008-12-17 Thread Dirceu Barquette
language you wish, but the answer just is a JSON! jQuery read easy this answer and put data in the component previously created. You know? Thanks again for your interest! Dirceu Barquette 2008/12/17 Olivier Percebois-Garve perceb...@gmail.com using a MVC framework such as cakephp or zend framework

[jQuery] Re: libraries

2008-12-17 Thread Dirceu Barquette
an application that build applications. Or a CMS!!! Thanks a lot!!! Dirceu Barquette 2008/12/17 Olivier Percebois-Garve perceb...@gmail.com Dirceu is this a different question ? in that case you should start a new thread with a different title also if you are using a tool for automatic translation

[jQuery] libraries

2008-12-16 Thread Dirceu Barquette
Hi, I'd like to know, please: There is {HTML,CSS,jQuery}library in [xml,csv,json]file format? The goal is an IDE... Thanks. Dirceu Barquette

[jQuery] Re: libraries

2008-12-16 Thread Dirceu Barquette
OK. CSV isn't required... All the IDE has {css,tagHtml}attrs or jQuery{attr,methods} auto-complete cappable . If I have these lists, auto-completing is easy... isn't it? Thanks Dirceu Barquette 2008/12/16 Ricardo Tomasi ricardob...@gmail.com Hmm.. what do you mean? all of these are plain text

[jQuery] Re: How to avoid the required on a credit card field using validate extension? [validate]

2008-12-13 Thread Dirceu Barquette
Hi, Idea: assign itemField class to credit card block onchanging select input, or something like this. Dirceu Barquette 2008/12/12 ekilater ivan.tho...@gmail.com Hi all, I've a form that validates using jQuery. In that form we use a small credit card validation with an extension

[jQuery] Re: bresenham algorithm

2008-12-07 Thread Dirceu Barquette
. And the code is very simple You can make funcionalities like modules and merge it to the code. My wish is sharing this code with all. Thank you very much. Your opinion is very important! Dirceu Barquette 2008/12/7 Richard D. Worth [EMAIL PROTECTED] The best way is using canvas. It works in all

[jQuery] Re: bresenham algorithm

2008-12-07 Thread Dirceu Barquette
P.S: at w3schools.com: *Note:* The canvas tag is only a container for graphics, you must use a script to actually paint graphics. Thanks 2008/12/7 Dirceu Barquette [EMAIL PROTECTED] (sorry my english...) Hi, You are right about your explain. But you can see

[jQuery] Re: addClass with attrs

2008-12-07 Thread Dirceu Barquette
that it is easier to keep track of the CSS if you keep it in the CSS pages, just make a comment in the file so you know what the class is for. On Dec 6, 5:50 pm, Dirceu Barquette [EMAIL PROTECTED] wrote: Hi! How can I add a class with its attrs dynamically? like this (not works, obvious

[jQuery] bresenham algorithm

2008-12-06 Thread Dirceu Barquette
Hi! this function draw a line using bresenham algorithm. I created a selected line to draw. when the user movemouse, the oldest line is erased and a new selected line is created. but the process spent a lot of time. I think the problem is in outstanding line. Is there best way? thanks, Dirceu

[jQuery] addClass with attrs

2008-12-06 Thread Dirceu Barquette
Hi! How can I add a class with its attrs dynamically? like this (not works, obvious ...)--- $('#div').addClass('blah {background:#000}') Thanks, Dirceu Barquette

[jQuery] Re: addClass with attrs

2008-12-06 Thread Dirceu Barquette
Very good!!! I think is perfect to my application!! Thank you! Dirceu Barquette 2008/12/6 Karl Rudd [EMAIL PROTECTED] Try this plugin: http://plugins.jquery.com/project/Rule Karl Rudd On Sun, Dec 7, 2008 at 9:50 AM, Dirceu Barquette [EMAIL PROTECTED] wrote: Hi! How can I add

[jQuery] drawing on the web fastest!!!

2008-12-03 Thread Dirceu Barquette
Hi there, I realized new Isabela Draw version (1.3). Now very fast. I've changed the algorithm to create div elements at run time. I hope you appreciate. Ag suggestions and comments are welcome. Thanks advance. Dirceu Barquette

[jQuery] Re: how to avoid overhead

2008-12-02 Thread Dirceu Barquette
Thank you!! please! see the example at isabeladraw.sourceforge.net. I've been forced build blocks against the entire board. But I'm thinking create child-by-child onmouseover position. sorry my english... Dirceu Barquette 2008/12/2 [EMAIL PROTECTED] [EMAIL PROTECTED] I would start

[jQuery] how to avoid overhead

2008-12-02 Thread Dirceu Barquette
Hi! The code: for (i = 0; i 1600 ;i ++) { htm += 'div/div'; } $(htm).appendTo('#parentDiv'); How can avoid overhead? thanks, Dirceu Barquette

[jQuery] Re: how to avoid overhead

2008-12-02 Thread Dirceu Barquette
Thank you!! I will try your code soon. But the solution makes sense. I can't test in IE, cause I'm a linux user and need install VMware or something like this. I will feedback to you. Dirceu Barquette 2008/12/2 Michael Geary [EMAIL PROTECTED] You're right to question the requirement to add

[jQuery] Re: Augmentation

2008-12-01 Thread Dirceu Barquette
to call the widget: $('div/div').attr({id:'the_widget'}).mywidget(fff:function(){}); Dirceu 2008/12/1 DiTieM [EMAIL PROTECTED] Maybe what I am pretending to do is something that JQuery wants to avoid, but I am very frustrated with the following idea. Let's image we have a simple class:

[jQuery] Re: [treeview] Brief flash of expanded tree

2008-12-01 Thread Dirceu Barquette
sorry. my english is terrible... I didn't understand the example you give... Another issue: I would like your opinion about my other project: http://isabeladraw.sourceforge.net Comments are very welcome!!! thanks Dirceu Barquette 2008/12/1 Andrew [EMAIL PROTECTED] Thanks Dirceu, but i'm

[jQuery] drawing on the web

2008-11-30 Thread Dirceu Barquette
Hi, I've been developing a new jQuery plugin (library) to draw on the web. https://sourceforge.net/projects/isabeladraw/ The link is a short app using this library. Opinions and comments are very welcome. thanks Dirceu Barquette

[jQuery] Re: [treeview] Brief flash of expanded tree

2008-11-29 Thread Dirceu Barquette
Try my plugin. http://sourceforge.net/projects/jqtreevial/ 2008/11/29 Andrew [EMAIL PROTECTED] Hi I've got the treeview plugin set to be collapsed on load. This works generally, but every now and then, the page loads and the tree appears fully expanded, before shrinking back to it's

[jQuery] Re: treeview pluging issues - .find(.hitarea)

2008-11-26 Thread Dirceu Barquette
You are welcome!! :D 2008/11/26 alextait [EMAIL PROTECTED] thanks very much! :) On Nov 24, 4:12 am, Dirceu Barquette [EMAIL PROTECTED] wrote: Hi alextait, there is a new release for jqtreeview plugin at: http://downloads.sourceforge.net/jqtreevial/jqtreevial-pack-0.3.zip I've

[jQuery] Re: dynamic tree / treeview

2008-11-25 Thread Dirceu Barquette
try my treeview plugin. Maby it can help you. http://sourceforge.net/projects/jqtreevial/ Dirceu Barquette 2008/11/25 Bhavin [EMAIL PROTECTED] Thanks Jeffrey. I solved issue# 1 almost similar way you suggested. But I am more concern about issue # 2. I am not sure about the flow. I want

[jQuery] tree view layout without recursive function - insert and delete methods now available

2008-11-23 Thread Dirceu Barquette
. Comments and suggestions are very welcome! download at: http://downloads.sourceforge.net/jqtreevial/jqtreevial-pack-0.3.zip Thanks! Dirceu Barquette

[jQuery] Re: treeview pluging issues - .find(.hitarea)

2008-11-23 Thread Dirceu Barquette
Hi alextait, there is a new release for jqtreeview plugin at: http://downloads.sourceforge.net/jqtreevial/jqtreevial-pack-0.3.zip I've added insert and delete methods. Dirceu Barquette 2008/11/21 alextait [EMAIL PROTECTED] I have taken a look at your plugin... that fantastic

[jQuery] Re: Make window.open and page communicate

2008-11-20 Thread Dirceu Barquette
Search for opener object. but you can use dialog plugin from ui.jquery. this is more flexible! Dirceu 2008/11/20 Tolis Christomanos [EMAIL PROTECTED] I have a link where i open a new window with window.open(); Then i change some values in the new window and i want to update the page the new

[jQuery] Re: treeview pluging issues - .find(.hitarea)

2008-11-20 Thread Dirceu Barquette
Hi, see http://sourceforge.net/projects/jqtreevial/ I've been developing this plugin. Not complete yet, but is functional. Dirceu 2008/11/20 alextait [EMAIL PROTECTED] I am fairly new to jquery and I am trying to create a product/category browser/tree using the treeview plugin and ajax. My

[jQuery] Re: [jQuery][Treeview] How can I create ROOT node for the tree

2008-11-16 Thread Dirceu Barquette
Hi, I've been developing this plugin: http://sourceforge.net/projects/jqtreevial/ download the demo version and enjoy. Dirceu Barquette 2008/11/16 Pham Anh Tuan [EMAIL PROTECTED] Hi all, Anyone knows how to create ROOT node for the tree, sth like below ROOT --- I want to create

[jQuery] tree view layout without recursive function

2008-11-13 Thread Dirceu Barquette
/jqtreevial/ and download the last demo version. Opinions are very important. Thanks, Dirceu Barquette http://www.nabble.com/file/p20474457/jqtreevial-pack-0.2.zip jqtreevial-pack-0.2.zip -- View this message in context: http://www.nabble.com/tree-view-layout-without-recursive-function

[jQuery] Re: [treeview] Suggestion: function callback after async update

2008-11-13 Thread Dirceu Barquette
Is the above code to my plugin (jqTreevial)? If yes, thanks a lot!!! If no, thanks to!!! Barquette (http://sourceforge.net/projects/jqtreevial/) 2008/11/13 Dominik Deobald [EMAIL PROTECTED] Just a quick suggestion for future versions of treeview: I've added if

[jQuery] tree view layout without recursive function

2008-11-12 Thread Dirceu Barquette
/ and download the last demo version. Thanks! Dirceu Barquette