It is my jquery/ajax coding.
it is not not working now.
$(document).ready(function() {
$(".ac_odd").live(‘click’, function() {
alert(‘odd’);
var s_name = $(this).text();
$(’.sport-name’).val($(this).text());
$(’.ac_results’).css(‘display’,‘none’);
var sport_id = 22
$.get(
“/users/8/sport_subscriptions/”+sport_id+"/form_fields/?sport_name="+s_name+"&is_new=yes",
“”,
function(data) {
$("#extra_form_fields").html(data);
if ($("#extra_form_fields").find(“form”).length
== 1) {
// strip the superfluous tag
$("#extra_form_fields").html($("#extra_form_fields").find(“form”).html());
}
return false;
});
});
$(".ac_even").live(‘click’, function() {
alert(‘even’);
var s_name = $(this).text();
$(’.sport-name’).val($(this).text());
$(’.ac_results’).css(‘display’,‘none’);
var sport_id = 22
$.get(
“/users/8/sport_subscriptions/”+sport_id+"/form_fields/?sport_name="+s_name+"&is_new=yes",
“”,
function(data) {
$("#extra_form_fields").html(data);
if ($("#extra_form_fields").find(“form”).length
== 1) {
// strip the superfluous tag
$("#extra_form_fields").html($("#extra_form_fields").find(“form”).html());
}
return false;
});
});