Get latest news and Web Designing tutoria

Wednesday, 17 June 2015

Resign now, PDP group tells Buhari

A group within Nigeria’s opposition party, Peoples Democratic Party, has asked President Muhammadu Buhari to resign since he said there is a limit to what he can do at age 72. “How I wish I became Head of State when I was a governor, just a few years as a young man. Now at 72, there is a limit to what I can do,” Mr Buhari said while addressing Nigerians in South Africa...

Buhari to probe Jonathan's $9.7m failed arms contract

President: I’ll kill corruption What actually went wrong with the $9.7m arms deal? Why was the cash flown to South Africa from Nigeria?Was the money, which South Africa impounded, actually meant for arms purchase? These are some of the questions which will soon be answere...

Saturday, 13 June 2015

Jonathan’s failures, achievements in five years

  After sweeping to power with a vast majority of the votes during the 2011 presidential election, it didn’t take long before the Goodluck Jonathan presidency began to unravel. Mr. Jonathan, who had endeared himself to majority of ordinary Nigerians with his “I had no shoes” speech, promised a break from the old ways of doing things. His campaign slogan which was...

U.S Millitary Dat hacked

  Hackers with suspected links to China appear to have accessed sensitive data on United States intelligence and military personnel, American officials say. Details of a major hack emerged last week, but officials have now given details of a potential second breach. It is feared that the attack could leave U.S security personnel or their families open to blackmail,...

Thursday, 4 June 2015

History of [HRH] OHINOYI of Ebira

HRH Alhaji   Abdulrahaman Ado Ibrahim  The only child of his mother, Alhaji Abdulrahaman Ado Ibrahim was born  on Tuesday  7th  February, 1929 at Okeneba. His mother was Hajiya Hawawu&nbs...

Validating the HTML form

The only thing left to do is to return to the validate function. After all the other four functions have been executed, the four variables will either be true or false. We only want to send the form if all four variables are true. If they are not then the user has made an error and we need to keep them on the same page. Here's the rest of the code for the validate functi...

Checkboxes

The final function we need is for the checkbox. You can have 1 or more checkboxes on a form. We only have 1, so checking it is fairly straightforward. If you have more than checkbox, though, you do the testing in exactly the same way as for radio buttons. But here's the code for the checkCheckbox function:...

Dropdown Lists

The code to check the dropdown list is more or less the same as for radio buttons. Here it is...

Radio Buttons

Checking radio buttons on a form is a little trickier. You have to loop through each button, testing for a value of checked, which means it was selected. Only one radio button in a group can be selected, so if you find a value of checked you can break out of the loop. If no radio button was checked then you can return a value of false. If any one of them is checked...

Javascript Form Validation - the email function

We'll start with the function that checks the email address text box. We'll only check if the text box has had anything typed into it. Checking for a correct email address is notoriously difficult, so we're just trying to keep things simple here. Add the following function to your code (you won't be able to copy and paste because ours is an image - you'll learn more if...