Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'alternative to bookmarklets' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
alternative to bookmarklets
Authored by: ra4ul on Jan 07, '09 04:54:39PM

these bookmarklets won't work when javascript is disabled (say with NoScript). it's better to resize the window using the browser code; here's what i use to toggle window size:

(window.outerWidth == 1024) ? window.resizeTo(800,768) : window.resizeTo(1024,768);

use KeyConfig, FireGestures, etc. to trigger it.



[ Reply to This | # ]
alternative to bookmarklets
Authored by: palahala on Jan 08, '09 02:55:59AM

I never knew there's something like "browser code". Still looks like JavaScript to me? I guess I need to investigate...



[ Reply to This | # ]