I used this web page http://javascriptobfuscator.com/default.aspx to trick a little script.
$(document).ready(function(){ $("#likee").fadeOut("fast"); });
And the confusing code:
$(document)["\x72\x65\x61\x64\x79"](function (){$("\x23\x6C\x69\x6B\x65\x65")["\x66\x61\x64\x65\x4F\x75\x74"]("\x66\x61\x73\x74");} );
I am using a form to embed shredded code in mysql. However, when I pasted the code, I got the following:
$(document)["x72x65x61x64x79"](function (){$("x23x6Cx69x6Bx65x65")["x66x61x64x65x4Fx75x74"]("x66x61x73x74");} );
Does anyone know why the backslash is removed?
Will my code work without backslashes?
source share