img title complition

By Sugano Yoshihisa(E) Last update Aug 14, 2008 — Installed 58 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           Amazon short URI
// @namespace      http://www.foxking.org/
// @description    title attribute complition from alt text
// @include        *
// ==/UserScript==

(function() {
  var imgs = document.getElementsByTagName('img');

  for (var i = 0; i < imgs.length; i++) {
    var title = imgs[i].getAttribute('title');
    if (!title) { 
      imgs[i].setAttribute('title', imgs[i].getAttribute('alt'));
    }
  }
})();