Last active
January 1, 2016 16:16
-
-
Save Stefan-Code/b3b48ea723ee12b848b0 to your computer and use it in GitHub Desktop.
Image ALT Text bookmarklet (includes jQuery). Click on any image on page to show ALT text.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function()%7Bfunction%20callback()%7B(function(%24)%7Bvar%20jQuery%3D%24%3B%24('img').click(function()%20%7B%24(this).after(function()%20%7Breturn%20%22%3Cp%3E%3Ccode%3E%22%2B%24(this).attr('alt')%20%2B%20%22%3C%2Fcode%3E%3C%2Fp%3E%22%7D)%7D)%7D)(jQuery.noConflict(true))%7Dvar%20s%3Ddocument.createElement(%22script%22)%3Bs.src%3D%22https%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fjquery%2F1.7.1%2Fjquery.min.js%22%3Bif(s.addEventListener)%7Bs.addEventListener(%22load%22%2Ccallback%2Cfalse)%7Delse%20if(s.readyState)%7Bs.onreadystatechange%3Dcallback%7Ddocument.body.appendChild(s)%3B%7D)() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment