So, I have this code in index.html:
<td><a id="link" href="">Vídeos</a></td>
and then
<div name="content" id="content"></div>
I want to load a page named vid_content.html
I tried a lot of code I found everywhere but nothing went right..
PS: all the pages are local in the same folder!
The last thing I tried was:
$(document).ready(function(){
$("#link").click(function(){
$("#content").load("vid_content.html");
});
}