Is there an easier way of grabbing elements from the same file without having to load the page a few times?
Currently using this method
$('.side-article-title').load(thisURL+' #item-title');
$(".side-article-subtitle").load(thisURL+' #item-subtitle');
$(".side-article-detail").load(thisURL+' #item-detail');
1 Answer