Leser: 18
2009-08-25T13:23:03 freddyUnd ich wünsche mir bei Klick auf "Antwort mit Zitat" und auch "Antwort", dass der Cursor im Textfeld focus'iert wird.
2009-08-25T15:54:55 #Kein Kommentar2009-08-25T13:23:03 freddyUnd ich wünsche mir bei Klick auf "Antwort mit Zitat" und auch "Antwort", dass der Cursor im Textfeld focus'iert wird.
finde ich nicht zwingend notwendig. eine website, die mir einen focus setzt, nervt mich ziemlich. den einen klick kann man doch auch noch tun, wenn man sofort antworten will.
2009-08-25T16:22:01 GwenDragonDer Tabindex müsste geändert werden.
1
2
3
4
5
6
7
8
9
10
// ==UserScript==
// @include http://www.perl-community.de/bat/*
// @description nothing
// @author nothing
// @site nothing
// @name reply focus
// ==/UserScript==
var e = document.getElementsByName("message.message")[0];
e.focus();
2009-08-25T16:24:41 freddyIst ja nicht wirklich eine technische Herausforderung.
2009-08-25T17:04:07 pqdas mit dem tabindex rewähnte ich ja schon in dem anderen thread, in dem der focus gewünscht wurde. weiss jemand, wie ich das mache?
2009-08-25T17:52:56 pqWie? Soll das jemand ändern und dann im SVN committen? Oder wie meinst du das jetzt?klar, ich kann auch alles selber machen.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Linuxer: added index
function createButton (element, text, tag, add, index) {
if(!tag) tag = text;
var button = document.createElement("input") || {};
button.type = 'button';
button.className = 'button';
button.value = text || '---';
button.onclick = function() { insertTag(element, tag, this); };
if(add) add(button);
if(help[tag]) button.title = help[tag];
// Linuxer: add tabindex if index is defined
if(index) button.tabIndex=index;
return button;
}
1
2
3
4
// ohne tabindex
createButton(textarea, 'b', 'b', addTo);
// mit tabindex
createButton(textarea, 'b', 'b', addTo, 1);
2009-08-25T17:52:18 GwenDragonDanke für die Änderung
2009-08-26T07:19:14 GwenDragonEinmal Tab drücken wie sonst auch woanders, wenn das Layout stimmt.