Full tutorial: http://hofmannsven.com/2013/laboratory/ios-bookmarklets/
Last active
June 25, 2024 11:53
-
-
Save hofmannsven/6226988 to your computer and use it in GitHub Desktop.
Bookmarklets for Mobile Safari: Debugging within iOS devices (iPad, iPhone and iPod Touch).
This file contains 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(F,i,r,e,b,u,g,L,I,T,E){if(F.getElementById(b))return;E=F[i+'NS']&&F.documentElement.namespaceURI;E=E?F[i+'NS'](E,'script'):F[i]('script');E[r]('id',b);E[r]('src',I+g+T);E[r](b,u);(F[e]('head')[0]||F[e]('body')[0]).appendChild(E);E=new%20Image;E[r]('src',I+L);})(document,'createElement','setAttribute','getElementsByTagName','FirebugLite','4','firebug-lite.js','releases/lite/latest/skin/xp/sprite.png','https://getfirebug.com/','#startOpened'); |
This file contains 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(){ | |
var w = window.open('about:blank'), | |
s = w.document; | |
s.write(''); | |
s.close(); | |
var f = s.body.appendChild(s.createElement('form')); | |
f.setAttribute('method','post'); | |
f.setAttribute('action','http://ole.michelsen.dk/viewsource/?uri='+location.href); | |
var i = f.appendChild(s.createElement('input')); | |
i.setAttribute('type','hidden'); | |
i.setAttribute('name','DOM'); | |
i.setAttribute('value',encodeURIComponent(document.documentElement.innerHTML)); | |
f.submit(); | |
})(); |
This file contains 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:void(window.location='http://validator.w3.org/check?uri='+encodeURIComponent(window.location)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment