$(document).ready(function(){
$('#btn1').click(function(){
document.img1.src='on2.png'
document.img2.src='kpz.png'
document.img3.src='cvz.png'
$.ajax({
url: "page1.html",
cache: false,
success: function(html){
$("#content").html(html);
}
});
});
$('#btn2').click(function(){
document.img1.src='on.png'
document.img2.src='kpz2.png'
document.img3.src='cvz.png'
$.ajax({
url: "page2.html",
cache: false,
success: function(html){
$("#content").html(html);
}
});
});
$('#btn3').click(function(){
document.img1.src='on.png'
document.img2.src='kpz.png'
document.img3.src='cvz3.png'
$.ajax({
url: "page3.html",
cache: false,
success: function(html){
$("#content").html(html);
}
});
});
});
Нашел решение!) думаю что через focus, и hover остальное реализую