|
|
-
37 Liked
| 29 Learned
| 18 Comments
|
|
Goto www.google.com, type 3+4 in the search text box and press enter. You can also do something like 12*(5+5)-12/4......
|
|
-
13 Liked
| 11 Learned
| 10 Comments
|
|
Microsoft has a free SEO toolkit, which can be used to identify the SEO problems in your website. You can install it from here.
http://www.microsoft.com/web/seo/
Once, you install the tool, you can open IIS and analyze any website. Once analysis ......
|
|
-
|
|
While working with IE, use the following shortcut keys
CTRL+R - Refresh a web page
CTRL+N - Open new browser with existing url
CTRL+K - Open a new tab in the current browser with existing url
CTRL+T - Open a new tab in the current browser with d......
|
|
-
|
|
Recently i started to learn HTML 5, In which i found an interesting attribute "Placeholder", which can be used to show sample values for controls in web page. When the page loads, controls will have the value specified in "Placeholder" attribute. As soo......
|
|
-
|
|
Today I got a surprising problem of JavaScript replace() method is replacing only the first occurrence. Suppose we have a string "AABAA", If we wants to replace "AA" with "A", then the replace("AABAA","AA","A") returning "ABAA" only. It is replacing onl......
|
|
-
|
|
Haml5 Local storage (DOM storage) is such a nice feature for improve performance of data driven ASP.NET application
Think of HTML5 local storage like browser cookies, but much better. Like cookies, local storage is persistent.
...
|
|
-
|
|
Filezilla is free open source FTP software that is used for transferring files from one location to another location. I have found that it is pretty fast compared to other FTP softwares. This is used for uploading and downloading of files.......
|
|
-
|
|
If we want to debug JavaScript in IE, we will use some editor like Visual studio. But in Google Chrome, its relatively easy and no seperate editor is required to debug JavaScript. We can debug JavaScript in browser itself. Put "debugger" statement in ......
|
|
-
|
|
Today I got an error in javascript because of "innerText" property. I found this property is not working in mozilla browser and working in other browsers. Later I found that innerText property is not compatible with mozilla browser and instead we can us......
|
|
-
|
|
find day no of current year using following JavaScript
[code]
var cday;
var d = new Date(); // gets today's date
var yn = d.getFullYear();
var mn = d.getMonth();
var dn = d.getDate();
var d1 = new Date(yn, ......
|
|