JavaScript Methods & Properties CheatSheets
What are JavaScript methods?A method is a function that is a property of an object. … Note: In JavaScript functions themselves are objects, so, in that context, a method is actually an object reference to a function What are the functions of…
JavaScript Objects CheatSheets, Operators & Quantifiers
The JavaScript language itself, as a format, is free, and the use of JavaScript in a website is not necessarily. JavaScript Cheatsheets contain useful code examples on a single page. … Find code for JS loops, variables, JavaScript objects, data types,…
JavaScript Cheatsheets or Basics Reference
The JavaScript language itself, as a format, is free, and the use of JavaScript in a website is not necessarily. JavaScript Cheatsheets contain useful code examples on a single page. … Find code for JS loops, variables, objects, data types, strings,…
JavaScript: Really I Know You?
JavaScript is mainly used for web-based applications and web browsers. But JavaScript is also used beyond the Web in software, servers and embedded hardware controls. Adding interactive behavior to web pages JavaScript allows users to interact with web…
HTML Cheatsheets or References
HTML Cheatsheets or references for creating web pages that are displayed on the World Wide Web (websites). The pages can be a mix of text, images, videos, and other elements. It can be created with: notepad, TextPad or any text editors. HTML HTML…
Tips For Every WordPress Developer
Tips For Every WordPress Developer Optimize your DB once a while You can use either a plugin or manually but it’s always good to optimize your MySql tables often (at least once or twice a month) so you’ll ensure that your queries are as good as they can…
Storing objects in IndexedDB in HTML5
Storing objects in IndexedDB in HTML5 IndexedDB has a concept of “Object Stores.” You can think of this as a typical database table.Object stores have data (obviously) but also a keypath and an optional set of indexes. Keypaths are basically unique…
Opening a database in HTML5
This database is local to the browser and only available to the user. IndexedDB databases follow the same rules as cookies and local storage. A database is unique to the domain it was loaded from. So for example, a database called “Foo” created at…
How to change colour of font using javascript
change colour of font Those two parentheses denote the method and hold instructions on what should happen. For instance: <SCRIPT LANGUAGE=”javascript”> document.write(‘<FONT COLOR=green>Green Text</FONT>’)…
How to create printer friendly web page using javascript
When you create a web page you usually keep in mind how it will rendered on the browser and its usability. Sometime, depending upon the content, you also know that your page might be printed by end user. User will click specially open the printable…