Решение: var curd = $.datepicker.formatDate(“dd.mm.yy”, new Date());
Доступ к свойствам объекта в javascript
Решение: for(var key in t) { alert(key); alert(t[key]); }
В IE8 не работает JSON объект
Решение: надо добавить <meta http-equiv=”X-UA-Compatible” content=”IE=8″ /> взято из http://stackoverflow.com/questions/4715373/json-not-defined-internet-explorer-8
Revealing Prototype Module Pattern
Решение: var Calc = function(eq) { // variables defined here }; Calc.prototype=function() { // function defined here… return{ // public members } }();
Revealing Module Pattern
Решение: var Calc = function(eq) { // variables defined here }; Calc.prototype=function() { // function defined here… return{ // public members } }();
Module Pattren – как создавать класс на JS
Решение: var myNameSpace = myNameSpace || {};// создаем пространство имен myNameSpace.myClass = function () { var field1 = “text”; var field2 = 5; var func1 = function (txt) { […]
Facebox не может выводить окошко, которое создалось после загрузки, динамически
Решение: var myNameSpace = myNameSpace || {};// создаем пространство имен myNameSpace.myClass = function () { var field1 = “text”; var field2 = 5; var func1 = function (txt) { […]
JQuery плохо работает IE10
Решение: MACHINE-WIDE FIXES We’re releasing a hotfix that will fix these, which you’ll be able to get to via some KB articles. These KBs with fixes are live and […]
JQuery не работает с IE9
Решение: 1. поставить в раздел head: <meta http-equiv=”X-UA-Compatible” content=”IE=EmulateIE8″ /> 2. использовать версию jquery только выше 1.5.1
jQuery CDN CSS
Решение: Google ajax.googleapis.com/ajax/libs/jqueryui/[VERSION NO]/jquery-ui.min.js ajax.googleapis.com/ajax/libs/jqueryui/[VERSION NO]/themes/[THEME NAME]/jquery-ui.min.css jQuery CDN code.jquery.com/ui/[VERSION NO]/jquery-ui.min.js code.jquery.com/ui/[VERSION NO]/themes/[THEME NAME]/jquery-ui.min.css Microsoft ajax.aspnetcdn.com/ajax/jquery.ui/[VERSION NO]/jquery-ui.min.js ajax.aspnetcdn.com/ajax/jquery.ui/[VERSION NO]/themes/[THEME NAME]/jquery-ui.min.css Статья – http://stackoverflow.com/questions/820412/downloading-jquery-css-from-googles-cdn