Showing posts with label javascript. Show all posts
Showing posts with label javascript. Show all posts

Monday, November 4, 2013

Published 1:18 AM by with 0 comment

google translator

.skiptranslate { display:none !important; visibility:hidden !important; } .lang { cursor:pointer; } $(document).ready(function () { $('.lang').on('click', function () { $.cookie('googtrans',$(this).attr('lang')); ...
Read More
    email this       edit

Friday, December 28, 2012

Published 8:37 AM by with 0 comment

JavaScript Try Catch

Try Catch (Exception) try { } catch(err) { } finally { } google_ad_client = "ca-pub-8117195126042316"; google_ad_slot = "4632179671"; google_ad_width = 468; google_ad_height = 60; ...
Read More
    email this       edit
Published 7:02 AM by with 1 comment

JavaScript Array Functions

Javascript Array Functions (Array) var fruit = ["apple","orange","banana"]; log(fruit.sort());//apple,banana,orange fruit.push("pear"); log(fruit.sort());//apple,banana,orange,pear var vegitables = ["carrot","broccoli","cauliflovd"]; var all = fruit.concat(vegitables); log(all);//apple,orange,banana,carrot,broccoli,cauliflovd !-- google_ad_client...
Read More
    email this       edit
Published 4:46 AM by with 0 comment

Javascript Function

Javascript Function Javascript function definitions, There are few different methods to define a function in javascript Example function Samsple1() {  log('Hello Aruna'); }... !-- google_ad_client = "ca-pub-8117195126042316"; /* blogpost_hori_1 */ google_ad_slot = "4632179671"; google_ad_width...
Read More
    email this       edit
Published 12:22 AM by with 0 comment

HTML5 Web Storage

HTML5 Web Storage HTML5 web storage, a better local storage than cookies. What is HTML5 Web Storage? With HTML5, web pages can store data locally within the user's browser. Earlier, this was done with cookies. However, Web Storage is more secure and faster. The data is not included with...
Read More
    email this       edit

Wednesday, December 26, 2012

Published 10:14 PM by with 0 comment

HTML5 Server-Sent Events

What is the Web workers   A server-sent event is when a web page automatically gets updates from a server. This was also possible before, but the web page would have to ask if any updates were available. With server-sent events, the updates come automatically. Examples: Facebook/Twitter...
Read More
    email this       edit
Published 9:38 PM by with 0 comment

HTML5 Web Workers

What is the Web workers   A web worker is a JavaScript that runs in the background, independently of other scripts, without affecting the performance of the page. You can continue to do whatever you want: clicking, selecting things, etc., while the web worker runs in the background.  ΙΕ...
Read More
    email this       edit

Thursday, December 20, 2012

Published 8:28 PM by with 0 comment

JQuery Message Box

This message box is designed for asp.net pages using JQuery collect all files in one folder and test the sample page Message box with animation //#--Scrolling with Animation----------------- //$("#ContentDivMessage").animate( { left:left1}, 500 ) //.animate( { top:top1 }, 500); //#------------------------------------------- Message box with out animation //#--With out Animation----------------------- document.getElementById('ContentDivMessage').style.left...
Read More
    email this       edit

Monday, December 17, 2012

Published 4:36 AM by with 1 comment

Random Images - Photo Album

DOWNLOAD SOURCE .pic {     -moz-border-bottom-colors: none;     -moz-border-left-colors: none;     -moz-border-right-colors: none;     -moz-border-top-colors: none;     border-color: #EEEEEE;     border-image: none;     border-style: solid;     border-width: 5px 5px 18px;    ...
Read More
    email this       edit