Please, some help would be truly appreciated.
I have read this question and I think i understood the answers
The thing is, I want the other page to be injected into the "main" div when a link is clicked. For example, when I click 2011, I want the page 2011.html to be injected into the "main" div.
<div id="cssmenu" class="sixteen columns">
<ul>
<li><a href='#'><span>2011</span></a></li>
<li><a href='#'><span>2012</span></a></li>
<li><a href='#'><span>2013</span></a></li>
<li><a href='#'><span>Edições Especiais</span></a></li>
<li><a href='#'><span>Estatísticas</span></a></li>
</ul>
</div>
<div id="separator" class="sixteen columns">
</div>
<div class="sixteen columns" id="main" style="margin-top: 15px; margin-bottom: 15px">
</div>
How can I do this?
Thanks in advance!