it is possible to reload a div or a table using location.reload();?
after my ajax request i want to reload only the table portion and not the whole page since i’m styling most using kendo ui and css3 when it reloads it disrupts the UI which i don’t want to happened.
Well a solution would be to extract that table/div in another page (jsp/html/php etc.) And in your main page that handles the ajax request you should include the newly created page using the html iframe tag:
Now in javascript you cand reload only the iframe which would refresh your table.
Also you could read a bit more about this in the tutorial from the link bellow:
Hope it helps.