add tabs reload ajax
- by alkitbi
I want to add to this simple file ... When you click on a tab updated contents of the page or reload
$(function(){
$('#tabs #nav li a').click(function(){
var currentNum = $(this).attr('id').slice(-1);
$('#tabs #nav li a').removeClass('current');
$(this).addClass('current');
$('#tabs…