EuroCent
Klappstuhl 2.0
Habe folgendes Problem:
Bei mir klappt die Farbwahl unter IE nicht jedoch unter FireFox schon.
Wie bekomm ich es hin das es unter IE auch geht?
hier der HTML code
Hier der Javascript:
Bei mir klappt die Farbwahl unter IE nicht jedoch unter FireFox schon.
Wie bekomm ich es hin das es unter IE auch geht?
hier der HTML code
Code:
<select name="colors">
<option selected="selected">Farbwahl</option>
<option style="color:#0000FF" onclick="insert('[ color=blue*, '[ /color ]')">Blau</option>
<option style="color:#FF0000" onclick="insert('[ color=red*', '[ /color ]')">Rot</option>
<option style="color:#FFFF00" onclick="insert('[ color=yellow*', '[ /color ]')">Gelb</option>
<option style="color:#00FF00" onclick="insert('[ color=green*', '[ /color ]')">Grün</option>
<option style="color:#000000" onclick="insert('[ color=black*', '[ /color ]')">Schwarz</option>
<option style="color:#FFFFFF" onclick="insert('[ color=white*', '[ /color ]')">Weiss</option>
<option style="color:#999999" onclick="insert('[ color=grey*', '[ /color ]')">Grau</option>
<option style="color:#FF9900" onclick="insert('[ color=orange*', '[ /color ]')">Orange</option>
<option style="color:#9900FF" onclick="insert('[ color=#9900FF*', '[ /color ]')">Violett</option>
<option style="color:#FF00FF" onclick="insert('[ color=pink*', '[ /color ]')">Pink</option>
<option style="color:#00FFFF" onclick="insert('[ color=#00FFFF*', '[ /color ]')">Türkis</option>
</select>
Hier der Javascript:
Code:
function insert(aTag, eTag) {
var input = document.forms['formular'].elements['message'];
input.focus();
/* for IE */
if(typeof document.selection != 'undefined') {
/* Input the Code */
var range = document.selection.createRange();
var insText = range.text;
range.text = aTag + insText + eTag;
/* Anpassen der Cursorposition */
range = document.selection.createRange();
if (insText.length == 0) {
range.move('character', -eTag.length);
} else {
range.moveStart('character', aTag.length + insText.length + eTag.length);
}
range.select();
}
/* for new Gecko based Browsers */
else if(typeof input.selectionStart != 'undefined')
{
/* Input the Code */
var start = input.selectionStart;
var end = input.selectionEnd;
var insText = input.value.substring(start, end);
input.value = input.value.substr(0, start) + aTag + insText + eTag + input.value.substr(end);
/* Anpassen der Cursorposition */
var pos;
if (insText.length == 0) {
pos = start + aTag.length;
} else {
pos = start + aTag.length + insText.length + eTag.length;
}
input.selectionStart = pos;
input.selectionEnd = pos;
}
/* for other Browser */
else
{
/* Get the position */
var pos;
var re = new RegExp('^[0-9]{0,3}$');
while(!re.test(pos)) {
pos = prompt("Einfügen an Position (0.." + input.value.length + "):", "0");
}
if(pos > input.value.length) {
pos = input.value.length;
}
/* Input the Code */
var insText = prompt("Bitte geben Sie den zu formatierenden Text ein:");
input.value = input.value.substr(0, pos) + aTag + insText + eTag + input.value.substr(pos);
}
}