Showing posts with label odd and even number in JQuery Version 2. Show all posts
Showing posts with label odd and even number in JQuery Version 2. Show all posts

Thursday, October 15, 2015

Odd and Even Number Checker in JQuery

This simple program that I wrote will check if the number given by the user is Odd or Even number using JQuery. The code is very short and easy to understand I hope you will find my work useful in your learning in JQuery programming.

If you  have some questions please send me an email at jake.r.pomperada@gmail.com and jakerpomperada@yahoo.com. My mobile number here in the Philippines is 09173084360.



Program Listing

<html>
<head>
<script type="text/javascript" language="Javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
 </head>
 <style>
 h3 {
  font-family:arial;
  color:green;
  }
  </style>
<body>
<script language="javascript" type="text/javascript">
function  check_odd_even(val) 
   {
     var number = parseInt(val);

if ( number % 2 == 0 ){
         alert(number + " is an even number.");
}
          else {
          alert(number + " is an odd number.");
         }
}

$(document).ready(function () {
  value_number = parseInt(prompt("Enter a number"));
   check_odd_even(value_number);
  });
</script>
 </body>
</html>