function load_(css,url){
$.ajax({url:url}).done(function (d){
if($(css).length===0){
throw new Error(css);
}
(css).html(d);
});
}
@mistersql //get an html snippet from server, stuff into an element at the point of a css selector
eg load_("header#header", "header.html")♡ 0 ↻ 0