Some problem with the load() function.

Some problem with the load() function.

I have a "content" div which is used for the .load() function to display some other jsp page.

For example,
$('#content').load('tag.jsp');

The major function of the tag.jsp is load data from a table.

I got a problem in this scenario. In my main page, i have done something such as inserting data to the table. And then run again the script: $('#content').load('tag.jsp'); and expected to view the updated result.

However, sometimes i can see the updated result immediately and sometimes after inserting the data, the content in the div "content" have not changed. But i am sure that the data has been added. This sounds like some cache but i am not sure.

Is that a possibility of syntax error? Do i need to post the code here? Thanks!