[jQuery] script modules

2009-04-14 Thread Barquette
Hi all, My code app runs like this: //file app.js var runapp = function () { // I have about 1800 code lines using jquery like this: var fn1 = function (data) {//...code...}; var fn2 = function (data) {//...code...}; var fn3 = function (data) {//...code...}; fn1('blah'); }; //f

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

[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] Re: jQuery way

2009-01-04 Thread Dirceu Barquette
e and $("#container > :not(#header, #content, #footer)").empty(); //Kean code Both these very clean codes doesn't 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 gmai

[jQuery] Re: jQuery way

2009-01-04 Thread Dirceu Barquette
Not works too... Thank you. Dirceu Barquette 2009/1/4 Kean > > 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&

[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 > > Maybe: > $("#container").children().not("#head

[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 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 > 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 wrote: > >> jQuery UI

[jQuery] Re: question

2008-12-27 Thread Dirceu Barquette
ourceforge 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 > Hi Dirceu, > > I'm glad that was helpful. > > Yes, of course I'd b

[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 > I m

Re: R: [jQuery] Merry Xmass

2008-12-24 Thread Dirceu Barquette
4U2 from Brazil!! Dirceu Barquette 2008/12/24 diego valobra > Merry Xmas to all the _jQueryans_ of the world from Italy :) > > > Diego Valobra > > > --- *Mer 24/12/08, Lukas Polak * ha scritto: > > Da: Lukas Polak > Oggetto: [jQuery] Merry Xmass > A: "j

[jQuery] Re: question

2008-12-24 Thread Dirceu Barquette
WOW!!! .toSource is amazing!!! thank you again Dirceu Barquette 2008/12/23 Michael Geary > 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) I

[jQuery] Re: question

2008-12-23 Thread Dirceu Barquette
Page " LOL LOL LOL LOL [?] jquery has a very nice documentation and I always discover anything good! realy thank you!!! ;-) Dirceu Barquette 2008/12/23 Michael Geary > So you have a list of the methods of an object and you want to find out > what the parameters to each method a

[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 > > did you try listing the arguments array within each detected function ? > > On Tue, Dec 23, 2008 at 1:18 PM, Dirceu Barquette > wrote: > > Thanks. > > You are

[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 > > 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, &quo

[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]; $(''+Typeof+' '+v+' ').appendTo('body'); } Is it possible showing parameters list for each method above? thank you!!! 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]; $(''+Typeof[v]+' '+v+' ').appendTo('body'); } But, how to list parameters [and,or] options for each function? thanks again!! Dirceu Barqu

[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]; $(''+Typeof+' '+v+' ').appendTo('body'); } How to return option list for each class above? thanks Dirceu Barquette

[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 > > Are you serving this page as application/xml+xhtml ? I believe the xml > declaration at the top

[jQuery] Re: libraries

2008-12-17 Thread Dirceu Barquette
) > actually the best is to use css clases for the different states and > decorate them using css. > - you've a method new_node and then one named insert_node. confusing. > > other than that, nice, very nice, for somebody that is just learning > english. you've ambitious sc

[jQuery] Re: libraries

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

[jQuery] Re: libraries

2008-12-17 Thread Dirceu Barquette
! 2008/12/17 Olivier Percebois-Garve > 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:2

[jQuery] Re: libraries

2008-12-17 Thread Dirceu Barquette
using any 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 > > using a MVC framework such as cakephp or zend framew

[jQuery] Re: libraries

2008-12-17 Thread Dirceu Barquette
lement and choice what he wants". Put these two topics together and you have an application that build applications. Or a CMS!!! Thanks a lot!!! Dirceu Barquette 2008/12/17 Olivier Percebois-Garve > Dirceu > > is this a different question ? in that case you should start a new thread &

[jQuery] Re: libraries

2008-12-17 Thread Dirceu Barquette
od to build itself. Others methods and attrs comes latter. Again, sorry my english... I hope you understand the semanthic of my words. Thanks, Dirceu Barquette 2008/12/17 Olivier Percebois-Garve > Aptana does a good job for auto completion. > > I you weant to learn the api for yourself, I

[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 > > Hmm.. what do you mean? all of these are plain text, I

[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: 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 > > Hi all, > > I've a form that validates using jQuery. > > In that form we use a small credit card validation with

[jQuery] Re: addClass with attrs

2008-12-07 Thread Dirceu Barquette
sing an array of styles ".css({'background-color':'red', > 'color':'white'});" I find 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.

[jQuery] Re: bresenham algorithm

2008-12-07 Thread Dirceu Barquette
P.S: at w3schools.com: *"Note:* The 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

[jQuery] Re: bresenham algorithm

2008-12-07 Thread Dirceu Barquette
r your websites. 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 u

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

[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] bresenham algorithm

2008-12-06 Thread Dirceu Barquette
Barquette isabela_draw_line = function (s) { $.fn.isabela_draw.new_set({in_action:true}); $('.isabela_draw_board') .bind('mousemove',function(e){ relX = e.clientX - s.position.clientX; relY = e.clientY - s.position.clientY;

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

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

[jQuery] how to avoid overhead

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

[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]> > > T

[jQuery] Re: Augmentation

2008-12-01 Thread Dirceu Barquette
to call the widget: $('').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] 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

[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

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

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

2008-11-23 Thread Dirceu Barquette
thods. 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-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.

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

[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

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

[jQuery] tree view layout without recursive function

2008-11-13 Thread Dirceu Barquette
uot;2","string":"fruit","id_parent":"1"},{"id":"3","string":"meat","id_parent":"1"},...]} That's all!!! visit http://sourceforge.net/projects/jqtreevial/ and download the last demo version. Opini

[jQuery] tree view layout without recursive function

2008-11-12 Thread Dirceu Barquette
uot;string":"fruit","id_parent":"1"},{"id":"3","string":"meat","id_parent":"1"},...]} That's all!!! visit http://sourceforge.net/projects/jqtreevial/ and download the last demo version. Thanks! Dirceu Barquette