Thursday 30 April 2015

var captionLength = 0; var caption = ''; $(document).ready(function() { setInterval ('cursorAnimation()', 600); captionEl = $('#caption'); $('#test-typing').click(function(){ testTypingEffect(); }); }); function testTypingEffect() { caption = $('input#user-caption').val(); type(); } function type() { captionEl.html(caption.substr(0, captionLength++)); if(captionLength < caption.length+1) { setTimeout('type()', 50); } else { captionLength = 0; caption = ''; } }

Tuesday 28 April 2015

WhatsApp Web

WhatsApp Web

Send and receive WhatsApp messages right from your computer.
We recommend using WhatsApp Web with one of the following browsers:
WhatsApp Web also supports:

Monday 27 April 2015

<!-- Begin ParaChat Basic v9 Code -->
<iframe src='http://chat.parachat.com/chat/login.html?room=Bloggers&width=740&height=500&bg=eeeeee&fg=000000' style="border-style:ridge;border-width:4px;border-color:#eeeeee #eeeeee;" framespacing='0' frameborder='0' scrolling='no' width='740' height='500'>
<p>You do not have iframes enabled. <a href="http://www.parachat.com/iframe.html">More Info</a></p></iframe><a href="http://www.parachat.com"><img src="http://www.parachat.com/images/basic.png" border="0"></a>
<!-- End ParaChat Basic v9 Code -->

Wednesday 22 April 2015

multiopen
$('a.yourlink').click(function(e) { e.preventDefault(); window.open('http://yoururl1.com'); window.open('http://yoururl2.com'); }); Click Here

Java Hack

This is my current code I want to make it so that I can make it open inside an iframe like a window or another iframe an then I can drag it, resize it, maximize/minimize it, and close it.