Best way to prevent page scrolling on drag (mobile)
window.onmousedown= function (e) {
if (isTouchDevice()) {
$(document).on('touchstart', function (e) {
e.preventDefault();
});
}
}
window.onmouseup = function (e) {
$(document).off('touchstart');
}
if (isTouchDevice()) {
$(document).on('touchstart', function (e) {
e.preventDefault();
});
}
}
window.onmouseup = function (e) {
$(document).off('touchstart');
}
select/deselect all checkboxes using JS
ReplyDeleteFibonacci Series Program in PHP
Detect Mobile Devices in PHP
Convert MySQL to JSON using PHP
Calculate the distance between two locations using PHP
Simple star rating system using PHP, jQuery and Ajax
Polling System using PHP, MySQL and Ajax
Simple PHP File Cache