Tuesday, 25 March 2014

AAMath-Function file (Updated)

It is a javascript file that can be linked to your html webpages to include some of the functions to save time generating such functions. The functions included are: fact()-factorial ncr()-combination. npr()-permutation. sumToA()-sum to n terms of an Arithmetic Progression. sumToG()-sum to...

Saturday, 22 March 2014

Wednesday, 19 March 2014

Monday, 17 March 2014

Saturday, 15 March 2014

Thursday, 13 March 2014

Wednesday, 5 March 2014

HTML5 Clock-3 [Code]

Creating a simple html clock using html, css and javascript <html> <head> <style> ... </style> </head> <body onload="runclock()"> <div class="cbg"></div> <div id="clock" class="clock"></div> <div id="min" class="min"></div> <div...

Sunday, 2 March 2014

Javascript Code- Magic Square Generator

HTML code to generate an odd-Magic Square: Magic Square is an arrangement of consecutive numbers such that the sum of elements of each column each row and along the diagonals are the same. An odd sized magic square can be generated by using javascript HTML part is: <html> <head> <title>MAgic...