drag and drop API
http://www.walterzorn.com/dragdrop/dragdrop_e.htm
This is great, I never thought I need to use that, until one day PHP121 was developed. SO what I do is put PHP121 in a drag and drop div with iframe, then I got instant messanging inside the website.
Tip message
http://migoicons.tripod.com/dhtips.htm
one of the best on showing tips when using any event(best with mouseon event)
I use it for ads, like in some place(logo), move over, you will found a ads showing up.
Jscookmenu
http://www.cs.ucla.edu/~heng/JSCookMenu/
just a truely easy to use js menu making system
Cross Browser Expanding and Collapsing Table of Contents Menu
http://www.infovation.de/tocmenu_V2/TocMenu_0.htm
I got this one because I don't know how to make expanding and collapsing effect....It tells you much more than enough what you need to know
http://dhtmlkitchen.com/scripts/tabs/
This kind of tab effect is used in the ad when I'm posting
but you gota pay(unless you can get a free version licence)
Moo FX
http://moofx.mad4milk.net/
It's a easy effect script that can be used in many places, the home page looks impressive.
It's lite, useful. A must have for the people want their site look cool and don't want a crammy 50KB JS on everypage
Prototype
http://prototype.conio.net/
People call Prototype the JavaScript Framework. Many Javascript(especailly the Ajax ones) use Prototype's classes, like the Moo FX.
Normally, it's only for the advanced Javascript codes to code for their JS files.
w3compiler
http://www.w3compiler.com/
It's not a Javascript, but is a must have for site with LOADS of VISITS...
From my research, it's the BEST compresser out there(compress javascript, CSS and HTML). It does not compress the Javascript by making a encoder and decoder(might result better compression, but take a lot more resource when used in browsers), but by optmizing
look these
will become:
For people who want 20% average in optimized JS, HTML and CSS,(20% less of bandwidth), $79.95 is nothing
And here is the way for people to make js even smaller
if you always use 2 javascript together, then you just make them 2 into one.
of cause, keep the original, because that's important.
Also, I always suggest. CSS, JS and HTML should be seprate, but not put in the same html page. Because it would be easier to seprate the script, sturcture and style(SSS)
Last edited by Mgccl on Thu Feb 23, 2006 7:08 pm; edited 2 times in total
http://www.walterzorn.com/dragdrop/dragdrop_e.htm
This is great, I never thought I need to use that, until one day PHP121 was developed. SO what I do is put PHP121 in a drag and drop div with iframe, then I got instant messanging inside the website.
Tip message
http://migoicons.tripod.com/dhtips.htm
one of the best on showing tips when using any event(best with mouseon event)
I use it for ads, like in some place(logo), move over, you will found a ads showing up.
Jscookmenu
http://www.cs.ucla.edu/~heng/JSCookMenu/
just a truely easy to use js menu making system
Cross Browser Expanding and Collapsing Table of Contents Menu
http://www.infovation.de/tocmenu_V2/TocMenu_0.htm
I got this one because I don't know how to make expanding and collapsing effect....It tells you much more than enough what you need to know
http://dhtmlkitchen.com/scripts/tabs/
This kind of tab effect is used in the ad when I'm posting
but you gota pay(unless you can get a free version licence)
Moo FX
http://moofx.mad4milk.net/
It's a easy effect script that can be used in many places, the home page looks impressive.
It's lite, useful. A must have for the people want their site look cool and don't want a crammy 50KB JS on everypage
Prototype
http://prototype.conio.net/
People call Prototype the JavaScript Framework. Many Javascript(especailly the Ajax ones) use Prototype's classes, like the Moo FX.
Normally, it's only for the advanced Javascript codes to code for their JS files.
w3compiler
http://www.w3compiler.com/
It's not a Javascript, but is a must have for site with LOADS of VISITS...
From my research, it's the BEST compresser out there(compress javascript, CSS and HTML). It does not compress the Javascript by making a encoder and decoder(might result better compression, but take a lot more resource when used in browsers), but by optmizing
look these
| Code: |
| document.write('hello ');
document.write('world'); document.write('!'); |
will become:
| Code: |
| var d=document;
d.write('hello '); d.write('world'); d.write('!'); |
For people who want 20% average in optimized JS, HTML and CSS,(20% less of bandwidth), $79.95 is nothing
And here is the way for people to make js even smaller
if you always use 2 javascript together, then you just make them 2 into one.
of cause, keep the original, because that's important.
Also, I always suggest. CSS, JS and HTML should be seprate, but not put in the same html page. Because it would be easier to seprate the script, sturcture and style(SSS)
Last edited by Mgccl on Thu Feb 23, 2006 7:08 pm; edited 2 times in total
