by http://webgeektutorials.blogspot.com
Showing posts with label Browser. Show all posts
Showing posts with label Browser. Show all posts

Tuesday, July 10, 2012

Reload / Refresh Page in jQuery

Here is the code to refresh the page when u click on a button component. Its just like you press "F5" button to refresh page.
=======================Code begins =========================
<!doctype html>
<html lang="en-us">
<head>
<title>Reload/Refresh a Page in jQuery</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.js"> </script>

<script type="text/javascript">
$(document).ready(function() {
$('#Refresh').click(function() {
$("p").append("<strong>Now Refreshing page..</strong>");
location.reload();
});
});
</script>

Wednesday, March 28, 2012

Download ChromePlus ? It's CoolNovo Now

Looking for Chrome Plus? It's Coolnovo now..

Now it is Maple browser and called  CoolNovo  is a improved chrome kernel, multi-label, multi-window of the green browser. The rapid dual-core, the boss key, privacy protection, ad filtering more than 20 enhancements. It is completely free, no trojan, no virus, no adware plug-in, without any functional limitations, do not bundle any third-party software. Can be the perfect running the Windows 2000/XP/2003/vista/7 and Linux operating systems.

Features
  • Maple browse specialized such as online banking website does not support chrome mode to add IE list so open these URLs will automatically switch to IE mode to open. Users can also add other sites according to their needs for IE list.
  • I Personally like this feature, Mouse gestures are generated when you press and hold the right mouse button to move the mouse track. Skilled in the Maple browser mouse gestures will save you a lot of time and bring you the efficient operation and use of fun. For example, through the left and right mouse gestures to achieve backward forward effect; under the left and right mouse gesture to close the current tab and activate the left and right labels.

Thursday, October 13, 2011

Diagram Editor for Google+ Hangouts

The Diagram Editor for Google+ Hangouts enables you to collaboratively create diagrams with your friends while you video-chat with them in a Google+ Hangout: Everyone can contribute to the diagram and everyone sees your edit in real-time. It feels like all your friends are hanging out in the same conference room editing the diagram on a giant whiteboard without the need for being in the same physical location.

The editor enables you to collaboratively create diagrams with your friends while you videochat with them in a Google+ Hangout: Everyone can contribute to the diagram and everyone sees your edit in realtime. It feels like all your friends are hanging out in the same conference room editing the diagram on a giant whiteboard without the need for being in the same physical location. Currently, six different diagram types like UML class diagrams and business process diagrams are supported.

Tuesday, January 4, 2011

Javascript Makes Images Fly

Open any website and paste this javascript code in address bar and press enter. ( For nice results i suggest you to google for some images (ie flowers)


javascript: R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.getElementsByTagName("img"); DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+"px"; DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+"px"}R++}setInterval('A()',5); void(0);

Oh your all images will be dancing across the screen.

To make it slow near the end, "setInterval('A()',5);", change the 5 to a higher number to slow it down.

Woohoo Have fun.