HTML, JavaScript
- StarBucks87
-
StarBucks87
- Member since: Jul. 21, 2001
- Offline.
-
- Forum Stats
- Member
- Level 05
- Blank Slate
Hey I was wondering if fourteen is too young to know HTML, and Javasript?
- young-hova19
-
young-hova19
- Member since: Jul. 23, 2002
- Offline.
-
- Forum Stats
- Member
- Level 05
- Blank Slate
At 8/10/02 04:10 PM, M4a1CaCa wrote: Hey I was wondering if fourteen is too young to know HTML, and Javasript?
no it aint, its kinda good, unless you have been spendin ur dayz and nights just learing html
and html isnt too hard to learn anyway
- loserpoop
-
loserpoop
- Member since: May. 29, 2002
- Offline.
-
- Forum Stats
- Member
- Level 07
- Blank Slate
ya it is good to learn it now, i hope cause im 13 and i know html but i think its like the simplest script out there, im not sure but javascript is probally the second most easy, and once you learn that macromedias flash shouldnt be to hard cause my brother says actionscript is almost exactly like javascript. though im guessing you can learn it at any age just you actually have to want to learn it.
- ThunderBolt2001
-
ThunderBolt2001
- Member since: May. 26, 2001
- Offline.
-
- Forum Stats
- Member
- Level 14
- Blank Slate
At 8/10/02 04:10 PM, M4a1CaCa wrote: Hey I was wondering if fourteen is too young to know HTML, and Javasript?
Ha.....Ha
!WoW!
im 13 and i know html...its really easy...if u need a site to help u get started, let me know
- FreedomSlave
-
FreedomSlave
- Member since: Sep. 27, 2001
- Offline.
-
- Forum Stats
- Member
- Level 18
- Blank Slate
yeah html is very simple. A trained monkey can write html :)
Learning Javascript will serve you pretty well, you can use Jscript as an ASP language and Actionscript is based on Javascript.
Take a look into ASP or PHP, ASP is good because you only need to know VBScript or JScript, PHP (I believe) is based on perl which is more complex.
- k4o
-
k4o
- Member since: Jul. 4, 2002
- Offline.
-
- Forum Stats
- Member
- Level 07
- Blank Slate
Java script is fucking piss easy!!!!!!!!! if you dont know it you are a fool. if you want a good website with lads of Java Scripts to get you started or if you cant be fucked to write one urself email me and i'll send you the link.
Wait..... isn't it easier if i just put the link here???
- k4o
-
k4o
- Member since: Jul. 4, 2002
- Offline.
-
- Forum Stats
- Member
- Level 07
- Blank Slate
At 9/4/02 08:11 PM, -EcHo- wrote: Java script is fucking piss easy!!!!!!!!! if you dont know it you are a fool. if you want a good website with lads of Java Scripts to get you started or if you cant be fucked to write one urself email me and i'll send you the link.
Wait..... isn't it easier if i just put the link here???
CLICK HERE!
ANOTHER SITE YOU CAN USE IS THIS
Click Here!
- StarBucks87
-
StarBucks87
- Member since: Jul. 21, 2001
- Offline.
-
- Forum Stats
- Member
- Level 05
- Blank Slate
At 9/4/02 08:11 PM, -EcHo- wrote: Java script is fucking piss easy!!!!!!!!! if you dont know it you are a fool. if you want a good website with lads of Java Scripts to get you started or if you cant be fucked to write one urself email me and i'll send you the link.
I already know javascript, I just wanted to know if i was weird for learning it already. What i really need to learn is perl and adobe photoshop
- chrisc666
-
chrisc666
- Member since: Jul. 12, 2000
- Offline.
-
- Forum Stats
- Member
- Level 17
- Blank Slate
At 9/4/02 08:11 PM, -EcHo- wrote: Java script is fucking piss easy!!!!!!!!! if you dont know it you are a fool.
If you think javascript is easy then you are either stupid or very talented. Understanding the princials behind the object orientated nature of javascript is far from easy.
Sure anybody can learn window.open() or alert() but can you understand the princials behind something like this:
var blank_pos = 16, count = 0, pos = new Array(), nam = new Array();
pos[1] = 7;
pos[2] = 10;
pos[3] = 14;
pos[4] = 9;
pos[5] = 12;
pos[6] = 2;
pos[7] = 13;
pos[8] = 1;
pos[9] = 8;
pos[10] = 5;
pos[11] = 4;
pos[12] = 6;
pos[13] = 3;
pos[14] = 11;
pos[15] = 15;
function start() {
nam[1] = L1.style;
nam[2] = L2.style;
nam[3] = L3.style;
nam[4] = L4.style;
nam[5] = L5.style;
nam[6] = L6.style;
nam[7] = L7.style;
nam[8] = L8.style;
nam[9] = L9.style;
nam[10] = L10.style;
nam[11] = L11.style;
nam[12] = L12.style;
nam[13] = L13.style;
nam[14] = L14.style;
nam[15] = L15.style;
document.onkeydown = keyDown;
}
function keyDown() {
var ieKey = event.keyCode;
if (ieKey == 38) {
if (blank_pos < 13) {
count=blank_pos + 4;
X = fun(count);
Z = (parseInt(nam[X].top));
nam[X].top = Z - 52;
Q = pos[X];
pos[X] = blank_pos;
blank_pos = Q;
}
}
else if (ieKey == 40) {
if (blank_pos > 4) {
count = blank_pos - 4;
X = fun(count);
Z = (parseInt(nam[X].top));
nam[X].top = Z + 52;
Q = pos[X];
pos[X] = blank_pos;
blank_pos = Q;
}
}
else if (ieKey == 37) {
r = blank_pos % 4
if (r == 0) {
}
else {
count = blank_pos + 1;
X = fun(count);
Z = (parseInt(nam[X].left));
nam[X].left = Z - 52;
Q = pos[X];
pos[X] = blank_pos;
blank_pos = Q;
}
}
else if (ieKey == 39) {
ch = blank_pos + 3;
r = ch % 4;
if (r == 0) {
}
else {
count = blank_pos - 1;
X = fun(count);
Z = (parseInt(nam[X].left));
nam[X].left = Z + 52;
Q = pos[X];
pos[X] = blank_pos;
blank_pos = Q;
}
}
else {
alert("PLEASE USE PROPER KEYS");
}
A = false;
b = 0;
for (i = 1; i < 16; i++) {
b++;
if (pos[i] == b) {
A = true;
}
else {
A = false;
break;
}
}
if (A)alert("CONGRATULATIONS");
}
function fun(count) {
for (var i = 1; i < 16; i++) {
if (pos[i] == count) {
var X = i;
}
}
return X;
}
I doubt it.

