14 lines
298 B
JavaScript
14 lines
298 B
JavaScript
|
|
|
|
$(document).ready(function() {
|
|
$("#tabs_user_list a").click(function(){
|
|
load_list($(this).attr('filter'));
|
|
$(this).tab('show');
|
|
});
|
|
});
|
|
|
|
function load_list(filter){
|
|
$('#contentframe').load('./?page=get_list&filter=' + filter, function(){
|
|
|
|
});
|
|
} |