Question : desktop folders reappearing

I have two or three desktop folders that reappear on me.  I'm sure it's as a result of some settings in software or something as I am regularly trying out new ideas and processes.  Is there an easy way to determine what caused a folder to auto-create?

Answer : desktop folders reappearing

Yes, you can do this:

function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
  if(!anchors[i].href.match('www.example.com/'))
    {anchors[i].target = "_blank";}
  if(!anchors[i].href.match('www.example1.com/'))
    {anchors[i].target = "_blank";}
  if(!anchors[i].href.match('www.example2.com/'))
    {anchors[i].target = "_blank";}
  if(!anchors[i].href.match('www.example3.com/'))
    {anchors[i].target = "_blank";}
        }
}
window.onload = externalLinks;


or

function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
  if(!anchors[i].href.search('www.example') > -1)
    {anchors[i].target = "_blank";}
        }
}
window.onload = externalLinks;


Random Solutions  
 
programming4us programming4us