Topic awaiting preservation: Using JavaScipt Libraries?? (Page 1 of 1) |
|
---|---|
Maniac (V) Inmate From: Den Haag: The Royal Residence |
posted 07-21-2004 17:45
I am very curious about your opinion about Javascript libraries. Does anyone use them? Or do you think thay are crap? And why is it so? |
Paranoid (IV) Inmate From: USA |
posted 07-21-2004 19:04
Well, the problem with hand-written libraries is that you can't do anything you want with them. Sure, you have the source, but you're going to end up tweaking it a ton anyway. Basically, they are a limited subset of what's possible; and considering rendering things in Javascript isn't all that difficult, I don't mind reinventing the wheel. Especially when I constantly make improvements to my best wheels (hovercrafts, jet engine, warp drives, you know, fun stuff ). |
Paranoid (IV) Inmate From: Madison, Indiana, USA |
posted 07-22-2004 04:33
I tend to write my own JavaScript libraries and use them over and over. I agree with Iron Wallaby that using other peoples libraries, I usually end up re-writing most of it because they use a different style of interface to the library than I want to use and their library won't fit into my structure. |
Neurotic (0) Inmate Newly admitted From: |
posted 07-23-2004 23:43
I like to think of javascript libraries as some useful / simple set of funcs/classes. I try to collect them, some of them you can see here: http://gosu.pl/dhtml/javascript-libraries.html . And what I think about such libraries - they are cool |
Nervous Wreck (II) Inmate From: California |
posted 07-29-2004 07:47
ScottAndrew has a nice collection of DHTML libraries as well |
Bipolar (III) Inmate From: schillmania.com |
posted 08-28-2004 20:23
I've tried to write some generic functions for common tasks, like getElementsByClassName() or a PNG handler which transforms elements (either img with a SRC, div with a background image via CSS or whatever) to use PNG where supported. |
Nervous Wreck (II) Inmate From: Umeå, Sweden |
posted 09-05-2004 23:16
The only JavaScript library I've found that is genuinely useful is the 1kDHTML API by Chris Nott of Dithered, who is also the creator of the most useful CSS hacks summary on the net. |