Решение: 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
Cursor too big in contentEditable div until I start typing
Решение: div.question.editing { width: 95%; display: block; } Статья – http://stackoverflow.com/questions/9131701/cursor-too-big-in-contenteditable-div-until-i-start-typing
Autocomplete не дружит с contenteditable
Вообще, по-хорошему, вы не должны были найти эту страницу. Такие решения надо искать в Google и на Stack Overflow. Никогда не ищите на русском. Но раз вы сюда попали – […]