[그리스몽키] 크롬에서 작동하는 코드가 파폭에서 작동하지 않습니다
Posted: 2011 03 01 23:03 15
코드는 다음과 같습니다
var editor = document.getElementsByTagName('div');
for (i=0; i<editor.length; i++) {
if (editor.className=='editor-content')
{
editor.style.height = '800px';
}
}
특정 싸이트의 글 입력창을 늘리는 코드인데,
크롬에서는 정상작동합니다만 파폭에서는 늘어졌다가 다시 줄어듭니다.
혹시나 해서 if 안에 alert을 넣어보았는데 뜨는걸로 봐서 getElementsByTagName는 문제가 없는듯한데
왜 이런지 모르겠습니다
도움 주시면 감사합니다.
var editor = document.getElementsByTagName('div');
for (i=0; i<editor.length; i++) {
if (editor.className=='editor-content')
{
editor.style.height = '800px';
}
}
특정 싸이트의 글 입력창을 늘리는 코드인데,
크롬에서는 정상작동합니다만 파폭에서는 늘어졌다가 다시 줄어듭니다.
혹시나 해서 if 안에 alert을 넣어보았는데 뜨는걸로 봐서 getElementsByTagName는 문제가 없는듯한데
왜 이런지 모르겠습니다
도움 주시면 감사합니다.