System.Security.Crypthography.CryptographicException when installing sharepoint 2010 on windows 7
February 7, 2013Export files between GIT commits for windows
February 28, 2013I simpliefied the code as much as possible
var intervalHandler;
$('#'+obj_id).mousedown(function() {
intervalHandler = setInterval(function() { doTheWork(); }, 100);
return false;
})
$('#'+obj_id).mouseup(function() {
clearInterval(intervalHandler);
});
function doWork() {
//I am working here
}