How Capture Left, Right and Middle Mouse Click with jQuery
$('body').mousedown(function(event) { switch (event.which) { case 1: alert('Left Mouse button clicked.'); break;…
$('body').mousedown(function(event) { switch (event.which) { case 1: alert('Left Mouse button clicked.'); break;…
Don't know about you but a lot of what I do requires having access to multiple email addresses (testing websites that require signup etc). To aide my development I have…
<?php $num_rec_per_page=10; mysql_connect('localhost','root',''); mysql_select_db('apex1'); if (isset($_GET["page"])) { $page = $_GET["page"]; } else { $page=1; }; $start_from = ($page-1) * $num_rec_per_page; $sql = "SELECT * FROM student LIMIT $start_from, $num_rec_per_page"; $rs_result…
Everyone uses WhatsApp but only as a messenger or having fun like jokes etc. Some peoples also use WhatsApp for their work. Today We are sharing a WhatsApp based service.…
Do you know that you can use your Whatsapp to search anything on the web just like how you use Google, ask, yahoo and other search engines? Do you know…
K2 is probably the most popular Joomla component today. It enables Joomla with two very important features that per our opinion should be incorporated in the core Joomla. Beside the many…