Fixed width, centered design in SharePoint site using css
By default SharePoint gives 100% width to sites created. We can fixed width of site by using custom css and changing some class names in master Continue reading »
By default SharePoint gives 100% width to sites created. We can fixed width of site by using custom css and changing some class names in master Continue reading »
Strict mode is new feature in ECMA Script 5. This mode allows you to run program, piece of program (context) in strict mode. This mode will Continue reading »
Following is syntax of ternary operator in JavaScript. test?expression1:expression2 Example: <html xmlns=”http://www.w3.org/1999/xhtml”> <head> <title>Ternary Operator</title> </head> <body> <p id=”demo”> </p> <script type=”text/javascript”> var ele = document.getElementById(“demo”); Continue reading »
In this post we are going to see simple hello world example. Below example writes “Hello world” to html document. <html> <body> <h1>Hello world example</h1> <script Continue reading »
JavaScript developed by Netscape in 1995. JavaScript is structured language much similar to ‘C’ language. Today JavaScript is essential and popular language. What is JavaScript? JavaScript Continue reading »