switch (true) {
case (id >= 200 && id < 300): return icon.setAttribute("data-icon", "P");
case (id >= 300 && id < 400): return icon.setAttribute("data-icon", "Q");
case (id >=500 && id < 600): return icon.setAttribute("data-icon", "R");
case (id >=600 && id < 700): return icon.setAttribute("data-icon", "W");
case (id >= 700 && id < 800): return icon.setAttribute("data-icon", "M");
case (id === 800): return icon.setAttribute("data-icon", "B");
case (id === 801): return icon.setAttribute("data-icon", "H");
case (id === 802): return icon.setAttribute("data-icon", "N");
case (id === 803 || id === 804): return icon.setAttribute("data-icon", "Y");
default: return icon.setAttribute("data-icon", ")");
}
function test() {
return {
function() { // без пробела понятнее, если развернуть оно превращается в { function: function() { ... } }
return 'test';
},
...
}
}
test().function(); // surprise-surprise
$( document ).ready(function() {
var timeoutId = setTimeout(function() {
$('#botmenu').slideToggle(500, function() {
$('.trig').addClass("trigu");
});
}, 40000);
$('.strigger').click(function() {
clearTimeout(timeoutId);
$('#botmenu').slideToggle(500, function() {
$('.trig').toggleClass("trigu");
});
});
});
var toolremove = $("<span class='tool tool-remove ico'>'</span>").click(function () {
$('.ui-selected').remove();
});
var sectiontools = $("<div class='sectionTools'>"
+"<span class='tool tool-move ico'>{}</span> "
+"</div>").append(toolremove);
$('.ui-selected').children().append(sectiontools);
$('.ui-selected').children().append($("<div class='sectionTools'>"
+"<span class='tool tool-move ico'>{}</span> "
+"<span class='tool tool-remove ico'>'</span>"
+"</div>").children('.tool-remove').click(function() {
$('.ui-selected').remove();
}).parent());