Go Back   CodingForums.com > :: Client side development > JavaScript programming > JavaScript frameworks

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 02-06-2008, 05:56 PM   PM User | #1
WA
Administrator


 
Join Date: Mar 2002
Posts: 2,596
Thanks: 2
Thanked 19 Times in 18 Posts
WA will become famous soon enough
What's your favorite JavaScript framework?

I'm starting to get into jQuery, and just wondering what some of you like and use the most. I'm talking general purpose JavaScript frameworks. Is there one that is a clear winner for you, and how so?
__________________
- George
- JavaScript Kit- JavaScript tutorials and 400+ scripts!
- JavaScript Reference- JavaScript reference you can relate to.
WA is offline   Reply With Quote
Old 02-06-2008, 10:04 PM   PM User | #2
shyam
Senior Coder

 
shyam's Avatar
 
Join Date: Jul 2005
Posts: 1,563
Thanks: 2
Thanked 163 Times in 160 Posts
shyam will become famous soon enough
i was hooked to prototype...but having discovered jQuery's css selectors i've never looked back
__________________
You never have to change anything you got up in the middle of the night to write. -- Saul Bellow
shyam is offline   Reply With Quote
Old 02-06-2008, 11:18 PM   PM User | #3
oesxyl
Master Coder


 
Join Date: Dec 2007
Posts: 6,682
Thanks: 436
Thanked 890 Times in 879 Posts
oesxyl is a jewel in the roughoesxyl is a jewel in the roughoesxyl is a jewel in the rough
Quote:
Originally Posted by WA View Post
I'm starting to get into jQuery, and just wondering what some of you like and use the most. I'm talking general purpose JavaScript frameworks. Is there one that is a clear winner for you, and how so?
I don't find one I like. Oat seams to be somehow my winner,

http://oat.openlinksw.com/

Are still many things I don't like to oat. Maybe a thread with what is good/bad to frameworks could be relevant,

best regards
oesxyl is offline   Reply With Quote
Old 02-07-2008, 04:23 AM   PM User | #4
jkd
Senior Coder

 
jkd's Avatar
 
Join Date: May 2002
Location: metro DC
Posts: 3,163
Thanks: 1
Thanked 18 Times in 18 Posts
jkd will become famous soon enough
I like whatever framework I develop for the website. With really intensive GUIs, I find most generic framework code to be too slow.
__________________
jasonkarldavis.com
jkd is offline   Reply With Quote
Old 02-07-2008, 08:10 AM   PM User | #5
WA
Administrator


 
Join Date: Mar 2002
Posts: 2,596
Thanks: 2
Thanked 19 Times in 18 Posts
WA will become famous soon enough
I've yet to look at Prototype closely, mainly because of its relatively large size. Just wondering, compared to jQuery, how is it "better" or more robust, given it's much larger footprint?
__________________
- George
- JavaScript Kit- JavaScript tutorials and 400+ scripts!
- JavaScript Reference- JavaScript reference you can relate to.
WA is offline   Reply With Quote
Old 02-07-2008, 02:51 PM   PM User | #6
A1ien51
Senior Coder

 
A1ien51's Avatar
 
Join Date: Jun 2002
Location: Between DC and Baltimore In a Cave
Posts: 2,717
Thanks: 1
Thanked 94 Times in 88 Posts
A1ien51 will become famous soon enough
Most people move to JQuery from prototype. I know some die hard prototype people run TO JQuery after using it.

Once you get the hang of JQuery, it is very fun to code in.

If you want some books on JQuery or Prototype, my friends have books out on them which are very good reads:

JQuery In Action
Prototype and Scriptaculous in Action

Eric
__________________
Tech Author [Ajax In Action, JavaScript: Visual Blueprint]
A1ien51 is offline   Reply With Quote
Old 02-07-2008, 06:50 PM   PM User | #7
WA
Administrator


 
Join Date: Mar 2002
Posts: 2,596
Thanks: 2
Thanked 19 Times in 18 Posts
WA will become famous soon enough
Quote:
Most people move to JQuery from prototype. I know some die hard prototype people run TO JQuery after using it.
So what's the primary lure of jQuery for these people versus Prototype?
__________________
- George
- JavaScript Kit- JavaScript tutorials and 400+ scripts!
- JavaScript Reference- JavaScript reference you can relate to.
WA is offline   Reply With Quote
Old 02-07-2008, 07:24 PM   PM User | #8
A1ien51
Senior Coder

 
A1ien51's Avatar
 
Join Date: Jun 2002
Location: Between DC and Baltimore In a Cave
Posts: 2,717
Thanks: 1
Thanked 94 Times in 88 Posts
A1ien51 will become famous soon enough
Quote:
Originally Posted by WA View Post
So what's the primary lure of jQuery for these people versus Prototype?
jQuery focus is heavily on DOM manipulation and traversal. So that is the big draw for a of people that do not want prototypes "Ruby" syntax of doing things.

This example here shows you why your fingers can hurt a lot less with JQuery: http://jquery.com/blog/2006/10/18/zebra-table-showdown/

Eric
__________________
Tech Author [Ajax In Action, JavaScript: Visual Blueprint]
A1ien51 is offline   Reply With Quote
Old 02-07-2008, 11:49 PM   PM User | #9
GJay
Senior Coder

 
Join Date: Sep 2005
Posts: 1,791
Thanks: 5
Thanked 36 Times in 35 Posts
GJay is on a distinguished road
I'm a big fan of Prototype, it just seems to make the most sense to me. Pretty much everything I do now makes use of it's Class and inheritance system which makes code so much easier to follow for other people, and much easier to modify.

Looking at the updated bit of the zebra-tables example shows that prototype's CSS selection and manipulation is pretty much the same as jquery's.

Once you're gzipping your javascript, the filesize of the libraries becomes pretty insignificant, so whichever fits your programming style (and in a team environment makes it easy for others to pick up) should probably be more of a concern.
__________________
My thoughts on some things: http://codemeetsmusic.com
And my scrapbook of cool things: http://gjones.tumblr.com
GJay is offline   Reply With Quote
Old 02-16-2008, 02:45 AM   PM User | #10
richApps
New to the CF scene

 
Join Date: Feb 2008
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
richApps is an unknown quantity at this point
Thumbs up Another jQuery fan

I recently discovered jQuery and I've become a big fan. It's just amazing how much you can do with very little code. The syntax is very elegant and the chaining of statements is a big time saver.

Most of my apps / pages now integrate jQuery. You can find some of these at http://richapps.googlepages.com/

-Pablo
richApps is offline   Reply With Quote
Old 02-16-2008, 07:38 PM   PM User | #11
EricaStar
New Coder

 
Join Date: Nov 2006
Posts: 47
Thanks: 2
Thanked 1 Time in 1 Post
EricaStar is an unknown quantity at this point
Yahoo User Interface, gives plenty of sample code and documentation. As a beginning javascript developer that is exactly what I need. If you are experienced in programming techniquest (from other languages) and are now taking on javascript, YUI is excellent for practicing and developing your javascript skills.
EricaStar is offline   Reply With Quote
Old 02-20-2008, 09:50 PM   PM User | #12
Isaak
New to the CF scene

 
Join Date: Feb 2008
Location: In your computer
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Isaak is an unknown quantity at this point
I chose for jQuery because the code is so compact, the community is great and the framework is just unbelievable awesome (perhaps slightly exaggerated).
Isaak is offline   Reply With Quote
Old 03-18-2008, 04:13 PM   PM User | #13
fside
Regular Coder

 
Join Date: Mar 2008
Posts: 301
Thanks: 2
Thanked 30 Times in 30 Posts
fside is an unknown quantity at this point
Quote:
Originally Posted by Isaak View Post
I chose for jQuery because the code is so compact
I suppose what's need is speed, not interpretation. Would it really matter with these scripts - if they able to be precompiled and run in IE, FF, Safari, etc?

Last edited by fside; 03-18-2008 at 04:44 PM..
fside is offline   Reply With Quote
Old 03-18-2008, 04:15 PM   PM User | #14
fside
Regular Coder

 
Join Date: Mar 2008
Posts: 301
Thanks: 2
Thanked 30 Times in 30 Posts
fside is an unknown quantity at this point
Quote:
Originally Posted by A1ien51 View Post
Compare to Apress ebooks. They sell theirs - for $10. I'm not even sure if they check for receipts, just that you have an ISBN and a copy of the book nearby (don't quote me on that).
fside is offline   Reply With Quote
Old 03-18-2008, 04:19 PM   PM User | #15
Kor
Red Devil Mod


 
Kor's Avatar
 
Join Date: Apr 2003
Location: Bucharest, ROMANIA
Posts: 8,478
Thanks: 58
Thanked 379 Times in 375 Posts
Kor has a spectacular aura aboutKor has a spectacular aura about
Quote:
What's your favorite JavaScript framework?
None. I don't trust libraries or frameworks. I code everything by hand and using my own "subroutines" tested as crossbrowser (which I try to keep up-to-date). Thus I am able to create exactly what I need for the designed custom purpose. No more, no less. In short time. That saves my time, my money and my nerves.
__________________
KOR
Offshore programming
-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*

Last edited by Kor; 03-18-2008 at 04:34 PM..
Kor is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 03:55 AM.


Advertisement
Log in to turn off these ads.