- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
$('#home').click(function(){
$.get("q.php", { id: 1 }, function(data){
$('#content').html(data);
});
});
$('#programz').click(function(){
$.get("q.php", { id: 2 }, function(data){
$('#content').html(data);
});
});
$('#contactz').click(function(){
$.get("q.php", { id: 3 }, function(data){
$('#content').html(data);
});
});
$('#aboutazz').click(function(){
$.get("q.php", { id: 4 }, function(data){
$('#content').html(data);
});
});
$('#chatz').click(function(){
$.get("q.php", { id: 5 }, function(data){
$('#content').html(data);
});
});
$('#advertisement').click(function(){
$.get("q.php", { id: 6 }, function(data){
$('#content').html(data);
});
MAGnit 27.06.2011 12:01 # 0
bteam 27.06.2011 12:05 # +2
$('#menu').click(function(e){var name = $.attr(e.srcElement,'id'); $.get('q.php',{url:name},function(){...} )})
Вот и всё. Учите js, а не jquery.
TheHamstertamer 27.06.2011 12:51 # 0
jQuery 27.06.2011 19:51 # −2
Arris 05.07.2011 13:00 # 0
bugmenot 27.06.2011 12:26 # +2
ling 27.06.2011 15:07 # +3
guest8 09.04.2019 11:05 # −999