i am loading some fragments with jquery with following code
var box = $(this).closest(".product-contain").children(".title:first");
box.load(url + " .maintitle", data);
var box = $(this).closest(".product-contain").children(".detail:first");
box.load(url + " .alldetail", data);
(i don't want to load whole .product-contain at once, because part of it is being edited by user at the same moment)
but it does 2 requests to server for same content.
can i somehow do it with one request?
thanks!
You can do one
$.get()
and load the content where it goes yourself, like this:This may look a little weird, but
.html()
with a jQuery object is a shortcut for.empty().append()
.