I'm having to make do mixing javascript and jQuery together until I can do a proper rewrite. It appears the code below isn't equivalent:
var something = $(".image:last"); // Last element with image class?
var element = document.getElementById("slideshow"); // HTML UL with images as children
var lastChild = element.lastChild;
What exactly is jQuery returning?
P.S: I might be making a mistake with the actual attribution. Apologies if that's the case. I'm pretty much new to jQuery.