Search
Search titles only
By:
Search titles only
By:
Log in
Register
Search
Search titles only
By:
Search titles only
By:
Menu
Install the app
Install
Forums
New posts
All threads
Latest threads
New posts
Trending threads
Trending
Search forums
What's new
New posts
New ads
New profile posts
Latest activity
Free Ads
Latest reviews
Search ads
Members
Current visitors
New profile posts
Search profile posts
Contact us
Latest ads
Ad icon
Sell your Land, House on idamata.lk for FREE
sajith.xp.pk
Updated:
Yesterday at 9:03 AM
Handmade Character Soft Toys
anil1961
Updated:
Tuesday at 2:11 PM
Bodim.lk out now !
Manoj Suranga Bandara
Updated:
Sunday at 3:05 AM
Power Lifting Lever Belt
SkullVamp
Updated:
Jun 13, 2026
Ad icon
port.lk Domain for sale
Lankan-Tech
Updated:
Jun 13, 2026
Electronics
Vehicles
Property
Search
Reply to thread
Forums
General
Education
Way to use Javascripting on your site.!
Get the App
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Message
<blockquote data-quote="Core" data-source="post: 6694478" data-attributes="member: 263471"><p><u>What is Javascript </u></p><p></p><p></p><p>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 </p><p></p><p><u>Advantages of Using Javascript</u></p><p><u></u></p><p><u></u>Can make interactive,Dynamic webpages other than static HTML standard websites </p><p></p><p>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</p><p></p><p>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)</p><p></p><p>hm. whatelse there are lot so try to search on Google not on Elakiri.!lol</p><p></p><p></p><p><u>Way to Make a Webpage </u></p><p></p><p>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</p><p></p><p></p><p><u>Save this as index.html</u></p><p> <!-- explanation when you access to the page browser loads automatically the java script file that in external source and which is called myjavascripting.js</p><p> //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</p><p>//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: --></p><p></p><p><html></p><p></p><p><head></p><p></p><p><title>Type your page's name</title></p><p><script type="text/javascript" src="myjavascripting.js"/></p><p></script></p><p></p><p></head></p><p></p><p></p><p><body></p><p></p><p><input type="button" value="to Download Page" onclick="showdownload()" /></p><p></p><p></body></p><p></p><p></html></p><p></p><p><u>Save this as myjavascripting.js</u></p><p></p><p>//so you can see this script file which named <u>myjavascripting.js </u>and inside that script you can see the function that previously was called </p><p>//when that function is called browser will automatically make a HTML page and insert another script reference with 4 additional buttons</p><p>//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</p><p>//inside that script all you have to do is just refer that function's name</p><p> </p><p></p><p>function showdownload()</p><p>{</p><p></p><p>document.write("<html>");</p><p></p><p>document.write("<body>");</p><p>document.write("<script type=\"text/javascript\" src=\"downloading.js\" >");</p><p>document.write("</script>")</p><p>document.write("</head>");</p><p></p><p>document.write("<body>");</p><p></p><p></p><p>document.write("<table border=\"1\" >"); </p><p></p><p>document.write("<tr>");</p><p></p><p>document.write("<td>");</p><p>document.write("<input type=\"button\" value=\"Software 1\" onclick=\"software1()\" /> ");</p><p>document.write("</td>");</p><p></p><p>document.write("<td>");</p><p>document.write("<input type=\"button\" value=\"Software 2\" onclick=\"software2()\" /> ");</p><p>document.write("</td>");</p><p></p><p>document.write("<td>");</p><p>document.write("<input type=\"button\" value=\"Software 3\" onclick=\"software3()\" /> ");</p><p>document.write("</td>");</p><p></p><p>document.write("<td>");</p><p>document.write("<input type=\"button\" value=\"Software 4\" onclick=\"software4()\" /> ");</p><p>document.write("</td>");</p><p></p><p>document.write("</tr>");</p><p></p><p>document.write("</table border=\"1\" >");</p><p></p><p>document.write("</body>");</p><p>document.write("</html>");</p><p></p><p>}</p><p></p><p></p><p><u>Save this as downloading.js</u></p><p></p><p>//so that's what I have done in here </p><p></p><p>function software1()</p><p>{</p><p>var softwareURL = \"http://gryphes.tk/software1.exe\";");</p><p>document.location.href=softwareURL;");</p><p>}</p><p></p><p>function software2()</p><p>{</p><p>var softwareURL = \"http://gryphes.tk/software2.exe\"; ");</p><p>document.location.href=softwareURL;");</p><p>}</p><p></p><p>function software3()");</p><p>{</p><p>var softwareURL = \"http://gryphes.tk/software3.exe\"; ");</p><p>document.location.href=softwareURL;");</p><p>}</p><p></p><p>function software4()</p><p>{</p><p>var softwareURL = \"http://gryphes.tk/software3.exe\"; ");</p><p>document.location.href=softwareURL;");</p><p>}</p><p></p><p></p><p></p><p><strong><u><em>NOTE :</em> </u>Tested and works well on both IE 8 and FireFox 3.6</strong></p><p><strong>if you have any question then tell me</strong></p><p><strong>all codes have been written by myself(core on ElaKiri) and don't reposting this shit but you may allowed with the refrence</strong></p><p><strong>if you can plz give me a rep ! because I spent plenty of time to coding this thanks <img src="/styles/default/xenforo/smilies/default/happy.gif" class="smilie" loading="lazy" alt=":)" title="Happy :)" data-shortname=":)" /></strong></p></blockquote><p></p>
[QUOTE="Core, post: 6694478, member: 263471"] [U]What is Javascript [/U] 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 [U]Advantages of Using Javascript [/U]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 [U]Way to Make a Webpage [/U] 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 [U]Save this as index.html[/U] <!-- 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> [U]Save this as myjavascripting.js[/U] //so you can see this script file which named [U]myjavascripting.js [/U]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>"); } [U]Save this as downloading.js[/U] //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;"); } [B][U][I]NOTE :[/I] [/U]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 :)[/B] [/QUOTE]
Insert quotes…
Verification
Hath warak paha keeyada? (hatha wadikireema paha)
Post reply
Top
Bottom