function getFlash () {
if (navigator.plugins && navigator.plugins.length) {
var object = navigator.mimeTypes['application/x-shockwave-flash'];
if (object) {
return object.enabledPlugin.description;
}
} else {
try {
var object = new ActiveXObject('ShockwaveFlash.ShockwaveFlash');
if (object) {
return object.GetVariable('$version');
}
} catch (z) {}
}
}
var list = $('[data-image]');
$(document).on('click', '[data-image]', function (e) {
list.index($(this)); //это — индекс элемента в найденной ранее коллекции
});
$(function () {
var list = $('[data-image]');
list.on('click', function (e) {
var current = $(this), //элемент коллекции, на котором произошёл клик
next = list.eq(list.index(current) + 1); //а вот и он — следующий элемент коллекции
});
});
.left_menu_content_book_title {
padding: 0 0 0 64px;
}
filter: alpha(opacity=...);
$(document).on('click', '.butt', function () {
console.log($(this)); // это и есть наш элемент с классом butt
});
.block:nth-child(3n + 1) {
clear: left;
}
$(document).on('click', '[data-dialog]', function (e) {
e.preventDefault();
});
$(function () {
var trigger = $('[data-dialog]'),
type = trigger.data('dialog'),
dialog = new DialogFx(type);
trigger.on('click', function (e) {
e.preventDefault();
dialog.toggle.bind(dialog);
});
})();
/^.*?(\d+(\.\d+)?)?\s*([a-z0-9]+)?\s*(\(.+?\))?\s*-\s*\$\d+(\.\d+)?\s*$/mig
button::-moz-focus-inner {
border: 0;
padding: 0;
}
var myObject = {
prop1: function () {
console.log('Анимация прошла!');
},
prop2: function () {
$('div').animate({
opacity: 0.25
}, 100, function () {
this.prop1();
}.bind(this));
}
}
myObject.prop2();
var myObject = function () {
/*А тут можно много чего приватного создать*/
var _class = {
prop1: function () {
console.log('Анимация прошла!');
},
prop2: function () {
$('div').animate({
opacity: 0.25
}, 100, function () {
_class.prop1();
});
}
};
return _class;
}();
myObject.prop2();
var iframe = document.createElement('iframe');
window.addEventListener('message', function (e) {
iframe.height = e.data;
});
iframe.src = '...';
iframe.scrolling = 'no';
iframe.width = 300;
iframe.height = 300;
document.body.appendChild(iframe);
window.addEventListener('load', function () {
parent.postMessage(document.documentElement.scrollHeight, '*');
});