You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I load the radio buttons through an Ajax response, when this done it does not respond to click events.
Below is how the radio buttons are generated
Javascript
for (const key in data) {
if (Object.hasOwnProperty.call(data, key)) {
const element = data[key];
console.dir(element)
var html = "<div class='col-sm-4'><div class='choice' data-toggle='wizard-radio' rel= 'tooltip' title data-original-title='This is good if you travel alone.'><input type='radio' name='operators' value ='" + element.op_code + "'><div class='icon'><i class='material-icons'> airplane_ticket</i></div><h6>" + element.op_name + " </h6></div> </div>";
$('#details_content').prepend(html);
}
}
I load the radio buttons through an Ajax response, when this done it does not respond to click events.
Below is how the radio buttons are generated
Javascript
HTML
The text was updated successfully, but these errors were encountered: