#main
и родителю height: 100%;<a href="#" id="play">Играть</a>
<script type="text/javascript">
document.getElementById("play").href="";
</script>
$("#trigger").on({
mouseenter: function() {
$(".list").css("opacity", "0");
$(".social").show();
},
mouseleave: function(event) {
var el = event.target;
$(el).closest(".container").find(".social").hide();
$(".list").css("opacity", "1");
console.log(event.target);
}
});
window.onresize = function(event) {
//console.log(document.querySelectorAll(".pic img")[0].style.height);
var array = document.querySelectorAll(".pic");
for (i = 0;i<array.length;i++){
array[i].style.width = document.querySelectorAll(".pic img")[0].clientWidth + "px";
}
};
Мне нужно добавлять элементы на страницу, а после работать с их полями.
При добавлении (append, html) я выдаю им data
On change, bind не ловят элементы вообще