What is equivalent to
var input = document.getElementById("images"),
input.addEventListener("change", function (evt) {});
in jQuery?
$('#images').on("change",function(evt){
});
.on() should be your first option, if your jquery is < v1.7 then you can use bind() instead.
For further references: Check the jQuery API Documentation.
bind instead.$? try jQuery instead of $. Test this: $().jquery - it should give you the jquery version number.on method.
get element by id in jQueryandchange event with jquery....