I am trying to use jQuery to loop through a list of elements that have the same classname & extract their values.
I have this..
function calculate() {
// Fix jQuery conflicts
jQuery.noConflict();
jQuery(document).ready(function(){
// Get all items with the calculate className
var items = jQuery('.calculate');
});
}
I was reading up on the each() function though got confused how to use it properly in this instance.