
Va te recoucher Anti pub ...


A suivre

Moderator: PoToS @dmins CS
C'est pas plutot que Firefox se réfere au standard Javascript pour executer du code js, alors que IE y va de son interpretation personnelle dans beaucoup de cas plutot ? Et comme la majorité du temps, les webmaster bossent pour un rendu sur IE, si leur code js est non conforme, mais qu'il marche avec IE, ils le modifient pasVinZ** wrote:le prob de firefox c'est qu'il ya pleins de bugs d'interpretation, notament en javascript !
Code: Select all
<script language="JavaScript">
<!--
function getPost()
{
return document.post;
}
-->
</script>
Code: Select all
<script language="javascript" type="text/javascript">
<!--
function emoticon(text) {
text = ' ' + text + ' ';
post = parent.getPost();
if (post.message.createTextRange && post.message.caretPos) {
var caretPos = post.message.caretPos;
caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text;
post.message.focus();
} else {
post.message.value += text;
post.message.focus();
}
}
//-->
</script>