Решение: jQuery.noConflict(); (function($) { $(function() { // more code using $ as alias to jQuery }); })(jQuery); // other code…
Решение: var Calculator = function (eq) { this.eqCtl = document.getElementById(eq); }; // using JSON Calculator.prototype = { add: function (x,…
Решение: (function ($) { // оболочка для кода подключаемого модуля $.fn.highlightOnce = function () { // код поключаемого модуля return…
Решение: Кросс-браузерная JSON Сериализация в JavaScript Этот JavaScript Реализует JSON.stringify и JSON.parse функциональность для браузеров без встроенной поддержки. JavaScript object:…
Решение: var curd = $.datepicker.formatDate("dd.mm.yy", new Date());
Решение: for(var key in t) { alert(key); alert(t[key]); }
Решение: надо добавить <meta http-equiv="X-UA-Compatible" content="IE=8" /> взято из http://stackoverflow.com/questions/4715373/json-not-defined-internet-explorer-8
Решение: var Calc = function(eq) { // variables defined here }; Calc.prototype=function() { // function defined here... return{…
Решение: var Calc = function(eq) { // variables defined here }; Calc.prototype=function() { // function defined here... return{…
Решение: var myNameSpace = myNameSpace || {};// создаем пространство имен myNameSpace.myClass = function () { var field1 = "text"; var…