“Put your hand on a hot stove for a minute, and it seems like an hour. Sit with a pretty girl for an hour, and it seems like a minute. THAT'S relativity.”
– Albert Einstein

Posts Tagged ‘jquery’


09
Aug

jCryption, is simply Javascript Encryption. “j” stands for jQuery as core framework. And as always, everybody likes jQuery.

Normally if you submit a form and you don’t use SSL, your data will be sent in plain text.
But SSL is neither supported by every webhost nor it’s easy to install/apply sometimes.
So I created this plug-in in order that you are able to encrypt your data fast and simple.
jCryption uses the public-key algorithm of RSA for the encryption.

Author’s site had a good documentation on usage.

18
Jun

Simple way to remove Google watermark in search text box.

$(document).ready(function() {
     $("#cse-search-box input[name=q]").css("background-color", "#fff");
});

You need to include jQuery package first, of course.