We hope you enjoy your visit.

You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free.


Join our community!


If you're already a member please log in to your account to access all of our features:

Username:   Password:
Add Reply
  • Pages:
  • 1
  • 2
MODS?; plz help!
Topic Started: Nov 9 2005, 08:51 PM (451 Views)
3DMC
Member
[ * ]
thanks ross...i did not know were to put this topic...
Offline Profile Quote Post Goto Top
 
Postulate
Member Avatar
You're the point
[ *  *  *  *  *  * ]
What do you need to make a modification?

1) Two hands
2) A brain
3) A keyboard
4) A computer
5) An internet connection

I am assuming you have all of these, since each item is also required to make a topic on a forum.

I would highly advise you not go to w3schools, as in my opinion, their tutorials are misleading and lack a great amount of detail.

My personal favorite is WebTeacher, but that may just be a style issue or personal preference. Your best bet would be to search the web for a tutorial that best suits you (there is no universal "best" tutorial, as different people learn facts differently), and learn from the scripts and teachings of current JS coders to build a strong base. (Don't rip...I will personally hunt you sown if you do.)

Once you "get" the jist of JS, you can look as reference lists to fill in the gaps until you understand the entire language.

There is no straight way to learn JS, so if you aren't willing to put a little effort into it, you shouldn't even bother. Just a heads up.
Offline Profile Quote Post Goto Top
 
3DMC
Member
[ * ]
wow thanks!i learn fast!i'll look there instead...
Offline Profile Quote Post Goto Top
 
Epsilekt
Member Avatar
Member
[ *  *  *  *  *  * ]
JavaScript is really easy. It's all structure. There is no question. It's either right or wrong. That's why I like it so much, and why it comes so easily to me.

The only thing that I hate about JavaScript is that writing good codes always takes a while to type.
Offline Profile Quote Post Goto Top
 
3DMC
Member
[ * ]
ok now i know about javascript now how do i make a mod?well whats rip?oh hey i generrated this!its a frist!

Code:
 
<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!--Begin JavaScript

// (c)2000 Webteacher Software, LLC
// Create dynamic select lists instantly at
// http://www.webteacher.com/javascript
//
// You are free to use this code as long as
// this header remains intact.

function setList(f) {
secondlist=eval("'"+f.elements['mods'].options[f.elements['mods'].selectedIndex].text+"'");
f.elements['admins'].options.length=0;
size=eval("lists['"+secondlist+"'].length");
for(i=0;i<size;i++) {
 newval=eval("lists['"+secondlist+"'][i]");
 f.elements['admins'].options[i]=new Option(newval);
};
 f.elements['admins'].selectedIndex=0;
};
lists=new Array();
lists['Fruit'] = new Array();
 lists['Fruit'][0]="apple";
 lists['Fruit'][1]="banana";
 lists['Fruit'][2]="cantelope";
 lists['Fruit'][3]="grape";
 lists['Fruit'][4]="honeydew";
 lists['Fruit'][5]="kiwi";
 lists['Fruit'][6]="lemon";
 lists['Fruit'][7]="lime";
 lists['Fruit'][8]="mango";


lists['Vegetables'] = new Array();
 lists['Vegetables'][0]="carrot";
 lists['Vegetables'][1]="celery";
 lists['Vegetables'][2]="onion";
 lists['Vegetables'][3]="potato";
 lists['Vegetables'][4]="squash";
 lists['Vegetables'][5]="tomato";


lists['Meat'] = new Array();
 lists['Meat'][0]="chicken";
 lists['Meat'][1]="ham";
 lists['Meat'][2]="hamburger";
 lists['Meat'][3]="lamb";
 lists['Meat'][4]="pastrami";
 lists['Meat'][5]="turkey";
 lists['Meat'][6]="steak";


//End JavaScript-->
</SCRIPT>
<BODY BGCOLOR=WHITE onLoad="setList(document.listsform)">

<FORM NAME="listsform">
<SELECT NAME="mods" onChange="setList(form)">
<OPTION>Fruit</OPTION>
<OPTION>Vegetables</OPTION>
<OPTION>Meat</OPTION>

</SELECT>

<SELECT NAME="admins">
<OPTION>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</OPTION>
<OPTION></OPTION>
<OPTION></OPTION>
<OPTION></OPTION>
<OPTION></OPTION>
<OPTION></OPTION>
<OPTION></OPTION>
<OPTION></OPTION>
<OPTION></OPTION>

</SELECT>
</FORM>
</BODY></HTML>
Offline Profile Quote Post Goto Top
 
Designs
Member
[ *  * ]
Heres a simple start script for javascript

<script language="JavaScript">
<!--
function yourFunction()
{
}
//-->
</script>

Its a starter, but it depends on what you want to do.
Offline Profile Quote Post Goto Top
 
3DMC
Member
[ * ]
kool thanks!
Offline Profile Quote Post Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
ZetaBoards - Free Forum Hosting
Join the millions that use us for their forum communities. Create your own forum today.
« Previous Topic · Technology Chat · Next Topic »
Add Reply
  • Pages:
  • 1
  • 2