17 Of The Best Rated Angular 2 Website Templates
It normally does not happen that in a period of just a few years a framework has almost completely taken...
It normally does not happen that in a period of just a few years a framework has almost completely taken...
Code snippet for validating a phpGrid column in javascript of a multi-select Grid. For example in order select orders from...
ItĀ is often required to haveĀ Newsletter subscription form on the home page of your website. For that i have...
function isNumberKey(evt) { var charCode = (evt.which) ? evt.which : event.keyCode if (charCode > 31 && (charCode < 48 ||...
Very handy code to redirect mobile users to your mobile website. Simplify put it on the home page of your...
Get screen width and height on a webpage using JavaScript using the screen object <script type="text/javascript"> document.write(screen.width+'x'+screen.height); </script>
Hiding a DIV using javascript document.getElementById('myDIV').style.display = 'none'; Showing it back document.getElementById('myDIV').style.display = '';