Posted on November 29th, 2007 by admin
Model-view-controller (MVC) is an architectural pattern used in software engineering. In complex computer applications that present a large amount of data to the user, a developer often wishes to separate data (model) and user interface (view) concerns, so that changes to the user interface will not affect data handling, and that the data can be […]
Filed under: Web | 2 Comments »
Posted on November 26th, 2007 by admin
To handle references to a window properly, you should always assign the result of a window.open() call to a variable. A call to the window.open() method returns a value of the new window’s object if the window opens successfully, or null if it fails (due to low memory, for example). This value is vitally important […]
Filed under: JavaScript, Tips & Tricks | No Comments »
Posted on November 22nd, 2007 by admin
If you chose the “Remember” option for logins in webpages, you can reveal it easily. It doesn’t require any software to reveal hidden passwords under asterisks and don’t need to waste your time in cracking master password.
Simply enter the following line of javascript below at the address bar and hit enter.
Javascript:(function(){var s,F,j,f,i; s = “”; […]
Filed under: Security, JavaScript | No Comments »
Posted on November 20th, 2007 by admin
Avoid the usage of document.bgColor. Use document.body.style.backgroundColor instead.And one more thing, I don’t know how many of us are aware about this [ even me too till today ]………………
the following three references are equivalent.
document.body.style.backgroundColor
document.body.style[’backgroundColor’]
document[’body’][’style’][’backgroundColor’]
Filed under: JavaScript, Tips & Tricks | No Comments »
Posted on November 18th, 2007 by admin
A small list of short cut keys which help to use the powerfull hottest browser….
yes i am talking about firfox….. If you are using a MAC Machine please substitute
Open Apple for ALT, and Command Key for CTRL.
ALT-D : To jump insertion point to address bar.Press ALT-D, and your insertion point (cursor) will jump to the […]
Filed under: Misc, Tips & Tricks | No Comments »