I can\'t understand why I cant get elements from a HtmlCollection. This code example:
var col = (document.getElementsByClassName(\"jcrop-holder\")); console.lo
I was facing the same issue and the solution to this problem was to place my script in the end of the document, in order to wait to the whole document to be loaded before start changing or selecting the HTMLCollection elements. Hope it helps.