Is there a way to select a element by index with Javascript or jQuery? For instance:
You could use the .eq() selector for this job:
var element = $('div.item:eq(3)');