Posts by Jefferson Moraes • 11 points
1 post
-
1
votes3
answers3061
viewsA: Update a specific DIV without refreshing the page
Create a JS function function updateDiv(div) { var div = '#' + div; $(div).load(window.location.href + " " + div); } or goes straight through the console $('#div').load(window.location.href + " " +…