I am using jquery to insert html content like,
$.get("_html/saveme.html", function(data){
$(".saveWin .modalCSS").html(data); //Error here
});
In Firefox it is giving me error as,
Node cannot be inserted at the specified point in the hierarchy
In IE it is working fine.
Please suggest me, are there any other ways to call class inside a class and insert html content.
Thanks in advance
Okay, I just found the answer…
Instead of calling like,
If I call,
This works.
Thanks a lot for your time guys.