Most of you know what is web browser – it’s a program/software by which you surf the internet, can view websites and web pages, send emails etc.    Browsers we are familiar with (Internet Explorer, Firefox, Google Chrome, Apple Safari, Opera, Camilla) have a good interface and are called graphical browsers because they, display all the…

Configure dreamweaver for .thtml and .ctp files I prefer to use Dreamweaver to create code all of my websites, mainly because of the code highlighting and the way I organize my sites in separate folders. I realize that there are lots of text editors out there but Dreamweaver is what I’m comfortable with and it… (15 comments)

Apache JMeter is a open source software, a 100% pure Java desktop application designed to load test functional behaviour and measure performance of a software/web-based packages. It was originally designed for testing Web Applications but has since expanded to other test functionality as well.   In simple words‘Apache JMeter is Java application designed to load testing the application. You… (2 comments)

The HTML DOM views an HTML document as a tree-structure. The tree structure that is defined known as a node-tree.All nodes can be accessed through the tree. Their contents can be modified or deleted, and new elements can be created.   Programming InterfaceIn the DOM, HTML documents consist of a set of node objects. The…

The Document Object Model (DOM) is a platform- and language-independent interface that will allow programs and scripts to dynamically access and update the content, structure and style of documents.   We can say It is convention for representing and interacting with objects in HTML, XHTML and XML documents.Aspects of the DOM (such as its “Elements”)…