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 3:13 AM by with 0 comment

-ms-grid-columns property (Internet Explorer)

-ms-grid-columns property (Internet Explorer) Gets or sets one or more values that specify the width of each grid column within the object. This property is read/write. Syntax -ms-grid-columns: [ auto | width | min-content | max-content | minmax(min, max) ] + | none Property values One or more...
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
Published 8:26 PM by with 0 comment

Spelling Check In Testbox

this is a usefull method to check spelling in testbox //make all references Microsoft Office 12.0 Object Library Microsoft Word 12.0 Object Library using System; using System.Collections.Generic; using System.Reflection; using System.Text; using System.Web.UI.WebControls; using Microsoft.Office.Interop.Word; public void SpellChecking(TextBox tBox) { try { Application app = new Application(); if...
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

Thursday, December 13, 2012

Published 2:32 AM by with 1 comment

Departures S01E11 Sri Lanka full video

...
Read More
    email this       edit
Published 2:11 AM by with 0 comment

How To Configure XDebug - NetBeans

Modify these lines at the end of the .ini file: ...
Read More
    email this       edit

Wednesday, December 12, 2012

Published 1:52 AM by with 0 comment

@keyframe

.animate-get-angry { width:100px; height:100px; background:red; position:relative; animation:get-angry 5s linear 2s infinite alternate;; -moz-animation:get-angry 5s linear 2s infinite alternate;; /* Firefox */ -webkit-animation:get-angry 5s linear 2s infinite alternate;; /* Safari and Chrome */ -o-animation:get-angry 5s linear 2s infinite alternate;; /* Opera */ } @keyframes get-angry { 0%...
Read More
    email this       edit
Published 1:06 AM by with 0 comment

Html5 Transform : Translate,Scale,Rotate & Transition

#pic { transition:all 2s; } #pic:hover { /*General*/ transform: translate(50%, 50%) scale(2, 2) rotate(10deg); /*Firefox*/ -moz-transform: translate(50%, 50%) scale(2, 2) rotate(10deg); /*Microsoft Internet Explorer*/ -ms-transform: translate(50%, 50%) scale(2, 2) rotate(10deg); /*Chrome,...
Read More
    email this       edit
Published 12:47 AM by with 0 comment

html5 Figure & Figcaption

this is the figure caption figure { margin: 1.5em 0; position: relative; } figure img { background: none repeat scroll 0 0 #FFFFFF !important; border: 1px solid #999999 !important; display: block !important; height: auto !important; max-width: 97% !important; ...
Read More
    email this       edit
Published 12:07 AM by with 0 comment

Flexbox

.flex { /* basic styling */ width: 350px; height: 200px; border: 1px solid #555; font: 14px Arial; /* flexbox setup */ display: -webkit-flex; -webkit-flex-direction: row; display: flex; flex-direction: row; } .flex > div { -webkit-flex: 1 1 auto; flex: 1 1 auto; width: 30px; /* To make the transition...
Read More
    email this       edit

Tuesday, December 11, 2012

Published 11:00 PM by with 0 comment

SVG Scalable Vector Graphics

Scalable Vector Graphics (SVG) is a family of specifications of an XML-based file format for two-dimensional vector graphics, both static and dynamic (i.e., interactive or animated). The SVG specification is an open standard that has been under development by the World Wide Web Consortium (W3C) since 1999. SVG images and their behaviors are defined in XML text files. This means that they can be...
Read More
    email this       edit
Published 9:34 PM by with 0 comment

css3 columns

.two-columns { -moz-column-count: 2; -moz-column-gap: 20px; -webkit-column-count: 2; -webkit-column-gap: 20px; column-count: 2; column-gap: 20px; } .two-columns { -moz-column-count: 2; -moz-column-gap: 20px; -webkit-column-count: 2; -webkit-column-gap: 20px; column-count: 2; column-gap: 20px; } Animation is the rapid display of a sequence of images to create an illusion...
Read More
    email this       edit

Monday, April 2, 2012

Published 11:21 PM by with 0 comment

70-573 TS Microsoft SharePoint 2010, Application Development c#

Source Size DownLoad Date Microsoft.CertifyMe.70-573.v2011-10-04.by.bennus.157q.vce 337KB Download .vce file 03/04/2012 Microsoft.CertifyMe.70-573.v2012-03-14.by.kemron.172q.vce 377KB Download .vce file ...
Read More
    email this       edit

Monday, February 27, 2012

Published 1:59 AM by with 0 comment

Creating a Custom Web Service in SharePoint for Uploading Document

...
Read More
    email this       edit