Trying to hit two elements with one load()
and not successful in what I am trying. This is what I have now to refresh a section on the page and it works fine.
$('#refreshme_'+request).load("http://www.example.com/add_list/");
I tried this
$('#refreshme_'+request, .xPlanner).load("http://www.example.com/add_list/");
and that did not work at all. Want to make my code efficient and need to refresh 2 DOMs with one call. Any ideas?