What is Javascript
is a light weight programming language mainly works on Browser based and was invented in I guess 1997 or 95(not remember the date well)and it also allow to make Interactive webpages like DHTML but unlike JAVA ,Flash and Silverlight ,currently supported with any Major Browser ,FF,IE,Crome,Safari,Opera (crap) approved by W3.Org and a Standard Web Based Language
Advantages of Using Javascript
Can make interactive,Dynamic webpages other than static HTML standard websites
Can be used to check validation of input information that typed by user insert to server so it saves lot of process overload of server and people got more download speed with high bandwidth
You can hide your links so any one who wish to download something from you site definitely need to come into yoursite rather than download from outide of the site (u need to learn PHP + mySQL for advance methods)
hm. whatelse there are lot so try to search on Google not on Elakiri.!lol
Way to Make a Webpage
now I am going to make a webpage with Javascript ,by using this codes you can make a download page ,example there are lot of softwares' names located in the webpage without making two webpages you can easily make that with Javascript and people won't be able to find the link of your software (but it's even possible if know javascript but in here I only teach the way to make like that pages) and you got a file which is called .js and can be used also with any webpages (it likes a library file in C++,C#,VB.nET and JAVA)all you have to do is just put the name+location in source of that file
Save this as index.html
<!-- explanation when you access to the page browser loads automatically the java script file that in external source and which is called myjavascripting.js
//then that script file already loaded to the browser it means you can call it whenever you need that all you have to do is just refer the name of appropriate function
//so that's what I have done it in <input> tag when I click on the button then the function which related to that button will be loaded to the page see next part: -->
<html>
<head>
<title>Type your page's name</title>
<script type="text/javascript" src="myjavascripting.js"/>
</script>
</head>
<body>
<input type="button" value="to Download Page" onclick="showdownload()" />
</body>
</html>
Save this as myjavascripting.js
//so you can see this script file which named myjavascripting.js and inside that script you can see the function that previously was called
//when that function is called browser will automatically make a HTML page and insert another script reference with 4 additional buttons
//and after script reference was called browser load that file which referred previously then like previously I mentioned whenever you want to load the function
//inside that script all you have to do is just refer that function's name
function showdownload()
{
document.write("<html>");
document.write("<body>");
document.write("<script type=\"text/javascript\" src=\"downloading.js\" >");
document.write("</script>")
document.write("</head>");
document.write("<body>");
document.write("<table border=\"1\" >");
document.write("<tr>");
document.write("<td>");
document.write("<input type=\"button\" value=\"Software 1\" onclick=\"software1()\" /> ");
document.write("</td>");
document.write("<td>");
document.write("<input type=\"button\" value=\"Software 2\" onclick=\"software2()\" /> ");
document.write("</td>");
document.write("<td>");
document.write("<input type=\"button\" value=\"Software 3\" onclick=\"software3()\" /> ");
document.write("</td>");
document.write("<td>");
document.write("<input type=\"button\" value=\"Software 4\" onclick=\"software4()\" /> ");
document.write("</td>");
document.write("</tr>");
document.write("</table border=\"1\" >");
document.write("</body>");
document.write("</html>");
}
Save this as downloading.js
//so that's what I have done in here
function software1()
{
var softwareURL = \"http://gryphes.tk/software1.exe\";");
document.location.href=softwareURL;");
}
function software2()
{
var softwareURL = \"http://gryphes.tk/software2.exe\"; ");
document.location.href=softwareURL;");
}
function software3()");
{
var softwareURL = \"http://gryphes.tk/software3.exe\"; ");
document.location.href=softwareURL;");
}
function software4()
{
var softwareURL = \"http://gryphes.tk/software3.exe\"; ");
document.location.href=softwareURL;");
}
NOTE : Tested and works well on both IE 8 and FireFox 3.6
if you have any question then tell me
all codes have been written by myself(core on ElaKiri) and don't reposting this shit but you may allowed with the refrence
if you can plz give me a rep ! because I spent plenty of time to coding this thanks
is a light weight programming language mainly works on Browser based and was invented in I guess 1997 or 95(not remember the date well)and it also allow to make Interactive webpages like DHTML but unlike JAVA ,Flash and Silverlight ,currently supported with any Major Browser ,FF,IE,Crome,Safari,Opera (crap) approved by W3.Org and a Standard Web Based Language
Advantages of Using Javascript
Can make interactive,Dynamic webpages other than static HTML standard websites
Can be used to check validation of input information that typed by user insert to server so it saves lot of process overload of server and people got more download speed with high bandwidth
You can hide your links so any one who wish to download something from you site definitely need to come into yoursite rather than download from outide of the site (u need to learn PHP + mySQL for advance methods)
hm. whatelse there are lot so try to search on Google not on Elakiri.!lol
Way to Make a Webpage
now I am going to make a webpage with Javascript ,by using this codes you can make a download page ,example there are lot of softwares' names located in the webpage without making two webpages you can easily make that with Javascript and people won't be able to find the link of your software (but it's even possible if know javascript but in here I only teach the way to make like that pages) and you got a file which is called .js and can be used also with any webpages (it likes a library file in C++,C#,VB.nET and JAVA)all you have to do is just put the name+location in source of that file
Save this as index.html
<!-- explanation when you access to the page browser loads automatically the java script file that in external source and which is called myjavascripting.js
//then that script file already loaded to the browser it means you can call it whenever you need that all you have to do is just refer the name of appropriate function
//so that's what I have done it in <input> tag when I click on the button then the function which related to that button will be loaded to the page see next part: -->
<html>
<head>
<title>Type your page's name</title>
<script type="text/javascript" src="myjavascripting.js"/>
</script>
</head>
<body>
<input type="button" value="to Download Page" onclick="showdownload()" />
</body>
</html>
Save this as myjavascripting.js
//so you can see this script file which named myjavascripting.js and inside that script you can see the function that previously was called
//when that function is called browser will automatically make a HTML page and insert another script reference with 4 additional buttons
//and after script reference was called browser load that file which referred previously then like previously I mentioned whenever you want to load the function
//inside that script all you have to do is just refer that function's name
function showdownload()
{
document.write("<html>");
document.write("<body>");
document.write("<script type=\"text/javascript\" src=\"downloading.js\" >");
document.write("</script>")
document.write("</head>");
document.write("<body>");
document.write("<table border=\"1\" >");
document.write("<tr>");
document.write("<td>");
document.write("<input type=\"button\" value=\"Software 1\" onclick=\"software1()\" /> ");
document.write("</td>");
document.write("<td>");
document.write("<input type=\"button\" value=\"Software 2\" onclick=\"software2()\" /> ");
document.write("</td>");
document.write("<td>");
document.write("<input type=\"button\" value=\"Software 3\" onclick=\"software3()\" /> ");
document.write("</td>");
document.write("<td>");
document.write("<input type=\"button\" value=\"Software 4\" onclick=\"software4()\" /> ");
document.write("</td>");
document.write("</tr>");
document.write("</table border=\"1\" >");
document.write("</body>");
document.write("</html>");
}
Save this as downloading.js
//so that's what I have done in here
function software1()
{
var softwareURL = \"http://gryphes.tk/software1.exe\";");
document.location.href=softwareURL;");
}
function software2()
{
var softwareURL = \"http://gryphes.tk/software2.exe\"; ");
document.location.href=softwareURL;");
}
function software3()");
{
var softwareURL = \"http://gryphes.tk/software3.exe\"; ");
document.location.href=softwareURL;");
}
function software4()
{
var softwareURL = \"http://gryphes.tk/software3.exe\"; ");
document.location.href=softwareURL;");
}
NOTE : Tested and works well on both IE 8 and FireFox 3.6
if you have any question then tell me
all codes have been written by myself(core on ElaKiri) and don't reposting this shit but you may allowed with the refrence
if you can plz give me a rep ! because I spent plenty of time to coding this thanks

Last edited: