14 lines
422 B
JavaScript
14 lines
422 B
JavaScript
jQuery(function($){
|
|
$('#by_scenario').change(function(){
|
|
var scenarioIdx = $(this).val();
|
|
$.redirect('a_hallOfFame.php', {scenarioIdx:scenarioIdx}, 'get');
|
|
})
|
|
//$.redirect("processing.php",{ commandtype: commandtype, turn: turn}, 'post');
|
|
|
|
$('.obj_tooltip').tooltip({
|
|
title:function(){
|
|
return $(this).find('.tooltiptext').html();
|
|
},
|
|
html:true
|
|
})
|
|
}); |