I would like to load/refresh a particular page for every 10 secs to view updated data\'s fetched from Database.
I used META for doing it
If you plan on refreshing the entire page, using tags is the cleanest way. It just seems awkward to have a JS timer refreshing your page when you have a fully-supported HTML-only way of doing this.
However, if you just need a specific part of the page refreshed, use AJAX. It's better in terms of user experience, as well as performance.