first shutdown jira: go to your JIRA bin directory and: ./shutdown.sh create a separate directory, outside your JIRA installation dir, to store the upgrade files: mkdir […]
I 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); }); […]
A more exact error is “An exception oftype System.Security.Crypthography.CryptographicException” and happened when I was trying to install SharePoint2010 on windows 7 x64 I tried to find […]
Recently I wanted to have different elements surrounded by transparent borders. For instance an ajax popup, similar with what facebook has, or a design element to […]
When writing html code to draw columns you usually use float elements contained inside a div container like here: left content right content the problem occurs […]