Get latest news and Web Designing tutoria

Wednesday 17 June 2015

Resign now, PDP group tells Buhari

Muhammadu Buhari AU summit

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 on Tuesday.

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

President: I’ll kill corruption

Image result for buhari and jonathan

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 answered.

Saturday 13 June 2015

Jonathan’s failures, achievements in five years

GoodLuck-Jonathan2 
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 tagged

U.S Millitary Dat hacked

 Image result for us military

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, the BBC says.

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 

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 function:

Javascript code to validate a HTML form

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:
Javascript code to test a checkbox

Dropdown Lists

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

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 then you can return a value of true. Here's the code for your radio button function:

Javascript function to check radio buttons

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 you type it out for yourself):

A check email function