Javascript A Home

Welcome. Please Login, Register, Or Activate! 
type your username and password to login
Date: November 25, 2009, 10:11 AM
432263 members and 299243 Topics
Latest Member: SuikisieTued
Nairaland [Nigerian Forum] Home Help Search Who is currently online? Login Register
Nairaland Forum  |  Technology  |  Webmasters (Moderators: OmniPotens, yawa-ti-de)  |  Javascript A Home
Pages: (1) (2) Go Down Send this topic Notify of replies
Author Topic: Javascript A Home  (Read 395 views)
javascript
Javascript A Home
« on: May 13, 2009, 01:45 AM »

Yeah this is the real javascript  that is set to rule the website programing world of nairaland. just watch out for my tutorials on javascript,  Cheesy Wink
segsalerty (m)
Re: Javascript A Home
« #1 on: May 14, 2009, 04:20 PM »

you wan tell us say you know JAVASCRIPT pass DHTML? Tongue
abeg start the lesson and lets see what you have for us then ?
remember students gonna throw questions oooo? Wink
javascript
Re: Javascript A Home
« #2 on: May 16, 2009, 11:39 AM »

Just watch out! In programming, you dont be hasty,
javascript
Re: Javascript A Home
« #3 on: May 16, 2009, 11:46 AM »

Create a cool drop down menu for your website, just edit the following code to suit your needs. it alresdy contains about ten dropdown menu which you can edit,  I also believe you have known how to add code to your source page cos i know dynamic html has taught you,  Make sure you do no alter the code oh


<!-- Dropdown Menu created by javascript. -->

<form name="myMenu">
<select name="menu">
<option value="index.html">My Home Page</option>
<option value="http://www.yahoo.com">Yahoo Search</option>
<option value="http://www.google.com">Google Search</option>
<option value="http://www. ">basket</option>
<option value="http://www. ">basket</option>
<option value="http://www. ">basket</option>
<option value="http://www. ">basket</option>
<option value="http://www. ">basket</option>
<option value="http://www. ">basket</option>
<option value="http://www. ">basket</option>
</select>
<input type="button" onClick="top.location=document.myMenu.menu.options[document.myMenu.menu.selectedIndex].value;" value="GO!">
</form>
javascript
Re: Javascript A Home
« #4 on: May 16, 2009, 11:54 AM »

I beileve you alredy know the differece between a link and hotspot. If yes, you will simply edit the link above http://www.     and the hotspot basket to your own. add to your page and simply upload to your host
segsalerty (m)
Re: Javascript A Home
« #5 on: May 16, 2009, 12:20 PM »

i bet ,  we know whare to get scripts if we need many and edit am to our own use/taste ,  thought you wanna teach here ,  why copy pasting scripts for us?
wht you are doing here is off topic,
should have put ,
Javascript Scripts for free and easy here
as the topic
Dual Core
Re: Javascript A Home
« #6 on: May 16, 2009, 03:12 PM »

Quote from: segsalerty on May 16, 2009, 12:20 PM
i bet ,  we know whare to get scripts if we need many and edit am to our own use/taste ,  thought you wanna teach here ,  why copy pasting scripts for us?
beef

free the guy.
segsalerty (m)
Re: Javascript A Home
« #7 on: May 16, 2009, 03:37 PM »

lol, 
you should know this is a forum ,  not a playing ground to dey show Champion !
not good for the elderly ones to dey decieve we young shall grow ,  atleast we know where to get all these stuffs too Smiley
Dual Core
Re: Javascript A Home
« #8 on: May 16, 2009, 05:04 PM »

for the sake of those who will find this thread useful, free this guy!
ok fine, u know where to get these things, maybe u even own DynamicDrive.
Point noted.

some of us here are learning something new. (maybe its something u learnt 20 years ago, well u've learnt it, allow others learn).
javascript
Re: Javascript A Home
« #9 on: May 18, 2009, 09:55 AM »

Quote from: segsalerty on May 16, 2009, 12:20 PM
i bet , we know whare to get scripts if we need many and edit am to our own use/taste , thought you wanna teach here , why copy pasting scripts for us?
wht you are doing here is off topic,
should have put ,
Javascript Scripts for free and easy here
as the topic

You see i wrote those codes my self, i did not coy it from anywhere. This is to help newbies on the topic cos we also started as newbie. so if you are not interested you can get off the thread we have serious people watching the thread please,
segsalerty (m)
Re: Javascript A Home
« #10 on: May 18, 2009, 01:06 PM »

ok oooooo
javascript
Re: Javascript A Home
« #11 on: May 18, 2009, 07:09 PM »

The next lesson is how to create a unique greetings for your website visitors when they visit your website. The script will check the local time on your visitors's computer and then put up a greeting to them,
segsalerty (m)
Re: Javascript A Home
« #12 on: May 18, 2009, 09:39 PM »

cool ,
but , where are the stuents in the room to join  me learn ? Tongue
javascript
Re: Javascript A Home
« #13 on: May 19, 2009, 01:45 PM »

Quote from: segsalerty on May 18, 2009, 09:39 PM
cool ,
but , where are the stuents in the room to join me learn ? Tongue

The class dont get filled up once it is a gradual process and besides it is not only nairaland that i do this!  Wink Cheesy
javascript
Re: Javascript A Home
« #14 on: May 19, 2009, 01:54 PM »

To ccreate a time greeting on your website, just edit the following code and add it to your web source,


<!-- Greeting by Time of Day script created by javascript. -->

<font size="4">
<script language=javascript>
<!--
function greeting() {
Now = new Date()
Hour = Now.getHours();
if (Hour < 5)
msg ="Can't sleep? Well this page should keep you interested!"
else if(Hour <12)
msg ="Good morning and welcome to my site."
else if(Hour < 18)
msg ="Good Afternoon!"
else if (Hour < 24)
msg ="Good Evening. We hope you have had a pleasant day."
return( msg )
}
document.write(greeting())
//-->
</script>
</font>
segsalerty (m)
Re: Javascript A Home
« #15 on: May 19, 2009, 07:51 PM »

uhmm ,  i still dey wait for the co students oooooo, 
Dual Core
Re: Javascript A Home
« #16 on: May 20, 2009, 05:45 AM »

Quote from: javascript on May 19, 2009, 01:54 PM
To ccreate a time greeting on your website, just edit the following code and add it to your web source,


<!-- Greeting by Time of Day script created by javascript. -->

<font size="4">
<script language=javascript>
<!--
function greeting() {
Now = new Date()
Hour = Now.getHours();
if (Hour < 5)
msg ="Can't sleep? Well this page should keep you interested!"
else if(Hour <12)
msg ="Good morning and welcome to my site."
else if(Hour < 18)
msg ="Good Afternoon!"
else if (Hour < 24)
msg ="Good Evening. We hope you have had a pleasant day."
return( msg )
}
document.write(greeting())
//-->
</script>
</font>

Javascript look at the lines i have put in bold.
segsalerty (m)
Re: Javascript A Home
« #17 on: May 20, 2009, 08:24 AM »

i beg ,  lets change the topic of the post ,  make it

Hello all, i am a vey good javascripter. i hve codes to display for you guys! Shocked

and there should be a subtopic too
Hey, dont mind him , see ----------- his scripts get error in line i put in Bold Tongue

thats all i'll say for now? anybody gonna make use of my idea pls ?
ebot tabi (m)
Re: Javascript A Home
« #18 on: May 20, 2009, 08:47 AM »

i don't this is a forum to show off your skills. look for somewhere else bro. Angry
segsalerty (m)
Re: Javascript A Home
« #19 on: May 20, 2009, 09:27 AM »

Uhmm ,  watin hin dey show self ? abeg make we talk about something else,  i can wake tomorrow now and call myself PHP and start to dey echo "hello world " to all of you  ,  lol :Pt
Dual Core
Re: Javascript A Home
« #20 on: May 20, 2009, 09:50 AM »

most of u guyz just whine like bitches begging for attention.
its very disappointing and pathetic.
and its a pity too.

Omni, excuse me on this one. Its bad knowing there are bots on nland, its worse knowing there are retard-acting fools too.
Javascript, u might wonno stop this thread or u might wonno continue. Your choice!
segsalerty (m)
Re: Javascript A Home
« #21 on: May 20, 2009, 08:14 PM »

@dual core , 
let me just keep my mouth shut and no time to attend to you now
cant you see this javascript guy just dey supply codes on this thread with no explanation ? cant you open your eyes and see? hen ? codes that he re edited ? we are not fools( like  Huh Tongue ),  go and check other tutorial threads that sounds very interesting /,  scripts with explanation , break downs , 
nobody can just come here and flash us whats common ,

thats all i will say for now
Dual Core
Re: Javascript A Home
« #22 on: May 20, 2009, 08:57 PM »

Quote from: segsalerty on May 20, 2009, 08:14 PM
@dual core , 
let me just keep my mouth shut
good idea cuz u wont want to drive rough down that lane with me. u'll hate the experience.
segsalerty (m)
Re: Javascript A Home
« #23 on: May 20, 2009, 09:11 PM »

 :p
javascript
Re: Javascript A Home
« #24 on: May 21, 2009, 06:49 PM »

Quote from: segsalerty on May 20, 2009, 09:27 AM
Uhmm , watin hin dey show self ? abeg make we talk about something else, i can wake tomorrow now and call myself PHP and start to dey echo "hello world " to all of you , lol :Pt

why dont you just leave this thread alone man! you are no impression. You may not find this thread intresting to you but some people do! why do people just like to criticise very badly? Well i dont give a damn about all you are doing even you can call yourself ''runtimerror'' next time it is your teacup,  Shocked Cool
javascript
Re: Javascript A Home
« #25 on: May 21, 2009, 07:05 PM »

Quote from: segsalerty on May 20, 2009, 09:27 AM
Uhmm , watin hin dey show self ? abeg make we talk about something else, i can wake tomorrow now and call myself PHP and start to dey echo "hello world " to all of you , lol :Pt
Quote from: ebot tabi on May 20, 2009, 08:47 AM
i don't this is a forum to show off your skills. look for somewhere else bro. Angry

You guys dont even know how to customise your signatures i can teach you that may be at least you wont say i copy code for you Cheesy Wink
javascript
Re: Javascript A Home
« #26 on: May 21, 2009, 07:10 PM »

Quote from: Dual Core on May 20, 2009, 05:45 AM
Javascript look at the lines i have put in bold.

There is nothing wrong with the lines or do you see anything wrong with it?Try to run and see if you can debug any error. i think there is none,
Dual Core
Re: Javascript A Home
« #27 on: May 21, 2009, 08:04 PM »

cant run it now. just looking at it and i think there's a problem. the first line i put in bold is a tag for Comments and u closed towards the end of thr scrpt, making most of the script a comment. since it runs, i mite be wrong.
cdeveloper (m)
Re: Javascript A Home
« #28 on: May 22, 2009, 11:38 AM »

Let the dude do his thing guys if what he is talking about is rather too simple for you fine and good but let other who do not have the experience learn. it is rather not a programmers attitude to look down on other peoples code just because he or she can make a meaning out of it. If you think it is rather simple why don't improve on it and let others see the improvement. it amazes me how some people are just out to to discourage the effort of others. If you think it is easy to put up a tutorial and post it for the public to see, well why don't u just try one and see if it is that  easy to post something you can not defend yourself.

My guy keep up the good work man i am solidly behind you and if i see anything that need to be improved on i will look into it. Scripting in Javascript has gone beyond pop windows and launching a new window. it is the backbone of every web 2.0 and it is time we start looking at Javascript not from the eyes of document.write("blahblah") but as a bridge between the server and the client.
javascript
Re: Javascript A Home
« #29 on: May 22, 2009, 03:05 PM »

@cdeveloper, tanks man but i guess dualcore mean no discouragement at all he has solidly been behind me all this while. I am currently compiling a software on javascript, so i am throwing open my skills in code writing for analysis and critcism Cheesy
segsalerty (m)
Re: Javascript A Home
« #30 on: May 22, 2009, 05:34 PM »

what hav you compling? ? Shocked Shocked
javascript
Re: Javascript A Home
« #31 on: May 22, 2009, 07:00 PM »

Quote from: segsalerty on May 22, 2009, 05:34 PM
what hav you compling? ? Shocked Shocked

why cant you just do your own and lets see Grin
 How Much Does A Good Website Like Mine Should Cost  Please Assist Me In Designing My Personal Website  I Need A Merger!  Page 2
Pages: (1) (2) Go Up Send Topic to Friend by E-mail Reply 


Sections: Autos/Cars (2) Jobs/Vacancies (2) (3) Career Talk Education General(2) Politics Romance Computers Phones Travel
Sports Fashion Health Religion Celebrities TV/Movies (2) Music/Radio (2) Books Webmasters Programming

Links: Page1 Page2 Page3 Page4 Page5 Page6 Page7 Page8 Page9 Page10

Nairaland is owned by Oluwaseun Osewa. See also: Nairalist Classified Ads
Nairaland Forum | Powered by SMF 1.0.12.
© 2001-2005, Lewis Media. All Rights Reserved.