..
DEV/html/css/js/img (61)
모든 브라우저에서 파이어버그 사용하기
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

'DEV > html/css/js/img' 카테고리의 다른 글

이미지 위에 텍스트 올리기  (0) 2010.12.23
jquery plugin graph charts  (0) 2010.09.30
js console.log  (0) 2010.09.15
  Comments,     Trackbacks
jquery plugin graph charts
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

'DEV > html/css/js/img' 카테고리의 다른 글

모든 브라우저에서 파이어버그 사용하기  (0) 2010.10.06
js console.log  (0) 2010.09.15
IE6, IE7 버그 : overflow:auto position: relative  (0) 2010.08.25
  Comments,     Trackbacks
js console.log
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

console.log("로그내용");

console.log("filter keyword",object);

debugger;

 

window.Jaxer(http://www.jaxer.org/): 자바스크립트 서버
http://venusdebris.elogin.co.kr/page/7/
window.console

http://jaures.egloos.com/2303789


'DEV > html/css/js/img' 카테고리의 다른 글

jquery plugin graph charts  (0) 2010.09.30
IE6, IE7 버그 : overflow:auto position: relative  (0) 2010.08.25
javascript try catch  (0) 2010.08.21
  Comments,     Trackbacks
IE6, IE7 버그 : overflow:auto position: relative
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

응시 문항을 감싸고 있는 div : style="height:457px;overflow:auto;" (부모)

그안의 응시 문항 div : style="position: relative;" (자식)

스크롤을 내려도 자식 컨텐츠가 고정이 되서 이동되지 않음.

=======> IE6과 IE7에서 버그 발생

해결 방법
1. DOCTYPE를 제거 한다.
2. 부모 DIV에도 style="position: relative;" 추가 한다.

2번 방법으로 해결하였습니다.

참고 URL
1번 : http://www.mt-olympus.com/emmett/bug_overflow_positionrelative.php
2번 : http://forum.standardmag.org/viewtopic.php?id=2280

'DEV > html/css/js/img' 카테고리의 다른 글

js console.log  (0) 2010.09.15
javascript try catch  (0) 2010.08.21
z-index  (0) 2010.08.11
  Comments,     Trackbacks
javascript try catch
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
<pre>
<html>
<body>
<script type="text/javascript">
var x=prompt("Enter a number between 0 and 10:","");
try
  {
  if(x>10)
    {
    throw "Err1";
    }
  else if(x<0)
    {
    throw "Err2";
    }
  else if(isNaN(x))
    {
    throw "Err3";
    }
  }
catch(er)
  {
  if(er=="Err1")
    {
    alert("Error! The value is too high");
    }
  if(er=="Err2")
    {
    alert("Error! The value is too low");
    }
  if(er=="Err3")
    {
    alert("Error! The value is not a number");
    }
  }
</script>
</body>
</html>

</pre>
http://www.w3schools.com/js/js_throw.asp

'DEV > html/css/js/img' 카테고리의 다른 글

IE6, IE7 버그 : overflow:auto position: relative  (0) 2010.08.25
z-index  (0) 2010.08.11
ipconfig  (0) 2010.08.06
  Comments,     Trackbacks
z-index
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
[출처] http://jobdahan.net/css2/966186
레이어를 이용하다 보면 서로 겹치는 경우가 흔히 발생을 하게 된다.
이럴경우 겹치는 레이어들은 서로 출력 순서를 가지게 된다.

z-index는 숫자가 높을수록 위로 올라 오게 된다.

'DEV > html/css/js/img' 카테고리의 다른 글

javascript try catch  (0) 2010.08.21
ipconfig  (0) 2010.08.06
jquery effects toggle  (0) 2010.08.02
  Comments,     Trackbacks
ipconfig
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

'DEV > html/css/js/img' 카테고리의 다른 글

z-index  (0) 2010.08.11
jquery effects toggle  (0) 2010.08.02
jquery selector cheatsheet  (0) 2010.08.02
  Comments,     Trackbacks
jquery effects toggle
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

$("#id").toggle();

'DEV > html/css/js/img' 카테고리의 다른 글

ipconfig  (0) 2010.08.06
jquery selector cheatsheet  (0) 2010.08.02
[jquery Events trigger] 트리거  (0) 2010.08.02
  Comments,     Trackbacks
jquery selector cheatsheet
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
  Comments,     Trackbacks
[jquery Events trigger] 트리거
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

$('#foo').bind('click', function() {
      alert($(this).text());
});
 
$('#foo').trigger('click');
  Comments,     Trackbacks