|
Ajax problem in Firefox
Hi,
I have a registration from. Where there is some checkbox which loads dynamically at "onclick" event of a radio button. The checkbox loads from a different php page by ajax. The problem is the value of checkbox cannot be fetched by the parent page. The code is:
$.post("sh_sub.php", {
id:+ selected},
function(data){
parent: "data.parentNode",
$('div#subs').parent().append(data);
});
Which is working in IE but not working is Firefox.
Can anyone help ?
|