there is a file as data.html.How to display the contents of this file using javascript or jquery
Thanks..
You could:
$('div#result').load('data.html');
please see details here.
jquery:
$('#somediv').load("data.html");