I think my last question was not clear, so people gave me the reverse
answer.
I want to put a string in an html file, and human eyes or robots will not be
able to read it.
For example I want to turn this one
<a href="#" onclick="this.href='http://www.google.com'">click here</a>
into
<a href="#" onclick="this.href=' encoded of h encoded of t encoded of t
encoded of p encoded of :
encoded of : encoded of / '">click here</a>
I prefer bit OR, the ^ opertaion, but ASCII is fine with me, like %40%xx%xx
This plus disable right click will make search engines and view source
difficult but still possible to know where it is linked too,
I encrypted(AES) data with Javascript . I want to decrypt this in c#. While decrypting in c3 I am getting error "length of the data to be decrypt is not valid" For encryption in Javascript I am using following code,
var randomnumber="91860F52E5C3A09BA3B827F28070E08D"; var encByteData = byteArrayToHex(rijndaelEncrypt(strFileContent, hex2s(randomnumber), "CBC"));
For the decryption in c# I am using following code,
When I run the following code the script will not display the second id field from the form: function enCrypt( code ){ var form = document.getElementById( 'myForm' ); document.write(form.cipher.value); document.write(form.msgcode.value); } // end function enCrypt </script> <form id = "myForm" action = ""> <p>Enter cipher : <input id = "cipher" type = "text" /></p> <p>Enter message : <input id = "msgcode" type = "text" /></p> <p>Result : <input id = "result" type = "text" /></p> <input type = "button" value = "Encrypt" onclick = "enCrypt()" />
Page where I'm redirecting user after 5 seconds to another page. This part of the script seems to work fine and redirects to the URL I want. However, the issue comes when I try and add parameters onto the URL. The redirect will stop working. I believe it's a formatting issue, as I've used the code in a different application. [code]...
problem I'm having is that the parent url has a # sign in it, like: http://localhost/mysite/me.html#01
i need the #01 to stay in the url after the refresh, anyway to do this? i tried using escape(window.opener.location.href) but that didn't work, as it escaped everything including the :// in http://
i also tried: window.opener.location.href(window.opener.location .protocol + "//" + window.opener.location.hostname + window.opener.location.pathname);
problem with that was i lost the #01 in the url, pathname didn't include it.
I have this JSON file that does the encoding from the states database.I want to extract it out using jquery and populate the select dropdown box. the json file is being encoded in this way:
[ {"State":{"name":"AUSTRALIA CAPITAL TERRITORY"}}, {"State":{"name":"NEW SOUTH WALES"}},
I could have sworn I saw a command that allows Javascripts to use the browser's native base64 encode/decode but I must be Googling for the wrong terms. Do most browsers expose these converters to javascripts's there a way to use these converters?
How would I modify this form to encode *all* the characters in the 'source' textarea to the '%xx' format & place result code into the 'output' textarea?
I want to encode and decode a javascript file in which many javascript function running. i fount lot of function decode and encode but not worrkking well .
I am working on creating a JSON feed that is later being used with Arshaw's fullCalendar, which I am integrating into Expression Engine CMS. Currently I am doing the following, and all works well.
What I am curious about is I am trying to create another array set that is pulling new information from a different source. Is it possible to use the json_encode(); method to encode two separate variables?If not, is there a way I can create the event variable and store both the information you see in the while loop with information that I would store into a new while loop? I'm a little stumped
I have acollection of local variables populated via Flash movies and scripts, and now I need to submit an ajax post (can also be get, but prefer post). I have tried:
The problem with this is the encoding of the localParam1 and localParam2 sometimes breaks the normal & delimeters. An even more problem is I sometimes haveupwards of 25+ local variables that I need to submit. These inline +s makes it feel, and look, like one huge hack - not to mention the encoding. One last restriction: I cannot use any jquery plugins due to the company's policy. So, I'm looking for something small and light as a solution - not a plug-in. Isn't there an easy way to do this? ONe thought I had was to create a new <form> on the page, and insert the variables as new <input /> fields - and then finally submit the entire form. Again, a big hack + css
I am building a client-side and server-side solution and want to use JSON through Ajax in both directions. I have ASP or JavaScript server-side, though Microsoft's support of server side JavaScript seems nil, so I am reluctantly conceeding to use ASP. I'd appreciate suggestions on available solutions to encode/decode JSON on the server-side (ASP or JavaScript). I don't plan to load jQuery server-side so that rules out plug-ins. I'd also like to know what is the latest client-side encode/decode for JSON. Is it built in jQuery or a plug-in? In both server and client, decoding JSON securely is key, so using eval () to decode is out.
I need a simple, quick and efficient way to logically branch if I find a string is contained in another string in jquery Most other languages this can be resolved in one or two lines and it would be readable.