...position: absolute;/*можно fixed*/
bottom: 0;...
handler.onmousedown = function(){
handler.onmousemove = function(){
//Обработка перетаскивания
};
};
handler.onmouseup = function(){
delete handler.onmousemove;
};
function f(){alert('hello');};
if (window.innerWidth > 960) {
f();
}