Recent posts by FF3user
|
Aug 10, 2008
|
Topic: Ideas and script requests / images.google "image description" in 'when-clicked-on-image-page' topframe also? @crazysnailboy:
Would like if you could make a script without the navbar on top thing, which would work on every languages... and could be great also if it was possible to make it work not only when accessing from Google Image results, but also when just entering/clicking on one of the URLs without the
&imgDesc=You%20can%20display%20%3Cb%3Erandom%3C/b%3E%20images%20on%20%3Cb%3E...%3C/b%3Epart above in them. Thank you :) |
|
Jul 11, 2008
|
Topic: Ideas and script requests / images.google "image description" in 'when-clicked-on-image-page' topframe also? Yeah...
Then what I would like is to have the "image description" showing in the 'when-clicked-on-image-page' topframe also, as showed in this screenshot: illustration3 Can you figure out the code for that? Is it even possible? |
|
Jul 11, 2008
|
Topic: Ideas and script requests / Auto-select everything (all text) in forms/search boxes, when focused? @znerp:
// ==UserScript==
// @name Auto-select all text in forms/search boxes when focused
// @namespace http://userscripts.org/forums/2/topics/2779
// @description Auto-select all text in forms/search boxes when focused
// @include *
// ==/UserScript==
searchBox = document.getElementById("s")
searchBox.addEventListener("focus", function() {
this.selectionStart = 0;
this.selectionEnd = this.value.length;
}, false);
|
|
Jul 11, 2008
|
Topic: Ideas and script requests / Auto-select everything (all text) in forms/search boxes, when focused? Thanks for the quick replies, but the suggestions doesn't seem to work for me on the test site with javascript disabled. Maybe (if you don't have NoScript) you could try having javascript disabled via this link: http://tinyurl.com/6nled5 (testpage seen through vTunnel with javascript choosen disabled) The code I am using (I have tried both of them):
// ==UserScript==
// @name Auto-select all text in forms/search boxes when focused
// @namespace http://userscripts.org/forums/2/topics/2779
// @description Auto-select all text in forms/search boxes when focused
// @include *
// ==/UserScript==
searchBox.addEventListener("focus", function() {
this.selectionStart = 0;
this.selectionEnd = this.value.length;
}, false);
P.S. all the text is choosen with/without the script if I focus the box using the "Tab" key. Same it is if I tripple click in the box... |
|
Jul 11, 2008
|
Topic: Ideas and script requests / Auto-select everything (all text) in forms/search boxes, when focused? Can somebody make me a userscript which, when one focuses a form/search box, makes sure that all text already there is selected?
Testpage: http://5440.morelyrics.co.uk/index.php?s=firefox (with NoScript/javascript disabled for that site, clicking in the search field, the "Search..." part remains present) Would be nice to have such a script, as one wouldn't have to press "SHIFT+HOME" or select everything with the mouse, before he/she could type the wanted query into it...
|
|
Jun 18, 2008
|
Topic: Ideas and script requests / Blogger.com - Auto-Skip Content Warning Page @Mikado:
|
|
Jun 18, 2008
|
Topic: Ideas and script requests / Blogger.com - Auto-Skip Content Warning Page Maybe this will help the coders:
|
|
Jun 18, 2008
|
Topic: Ideas and script requests / Blogger.com - Auto-Skip Content Warning Page I would like to have such a script too! I can confirm the things 'xlarge' is telling.
|
