I know that question is a little stupid. But i have next problem: I do obfuscation of my HTML code by http://myobfuscate.com/ , as you can see this site do like this: he creat varriables and put on it JS code. Here is code like this:
var lOOL = 'document.write()';
than it print on page by eval(). So if i want to inset this code on AJAX success function:
jQuery('#asd').html(data)
I have problem. What i can doo to solve it ? P.S. in my backend i have next code:
echo '<script id="crypt_data" language="javascript" type="text/javascript"> '.$obfuscatedcode.'</script>';
all my JS code which i have after use library oF http://myobfuscate.com/
i have at $obfuscatedcode thanks.