00:00
00:00
Newgrounds Background Image Theme

StickmanMarkinson just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

HTML, JavaScript

1,530 Views | 7 Replies
New Topic Respond to this Topic

HTML, JavaScript 2002-08-10 16:10:02


Hey I was wondering if fourteen is too young to know HTML, and Javasript?

Ha.....Ha
!WoW!

Response to HTML, JavaScript 2002-08-10 16:38:11


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

Response to HTML, JavaScript 2002-08-22 17:24:09


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

Response to HTML, JavaScript 2002-08-25 19:11:18


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.

Response to HTML, JavaScript 2002-09-04 20:11:16


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!

Response to HTML, JavaScript 2002-09-04 20:15:06


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!

Response to HTML, JavaScript 2002-09-06 01:03:50


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

Response to HTML, JavaScript 2002-09-06 08:50:44


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.