Iberis
javascript checkbox checked 처리 ie, 크롬 다되는거
Javascript:// Check document.getElementById("checkbox").checked = true; // Uncheck document.getElementById("checkbox").checked = false; jQuery (1.6+):// Check $("#checkbox").prop("checked", true); // Uncheck $("#checkbox").prop("checked", false);
chrome(크롬)에서 location.href 가 안될 때
IE에서는 잘 작동하던 코드가 chrome에서 안될 때 before - location.href("where"); after - location.href = "where";
CodeIgniter Warning: require(application/config/constants.php)
Warning: require(application/config/constants.php) [function.require]: failed to open stream: No such file or directory inC:\public_html\CRRwwwRoot_boot\system\core\CodeIgniter.php on line 64 Fatal error: require() [function.require]: Failed opening required 'application/config/constants.php' (include_path='c:\PHP') inC:\public_html\CRRwwwRoot_boot\system\core\CodeIgniter.php on line 64 에러일 경우 W..