TechHeap
Tutorials and examples on various frameworks and web development
Pages
(Move to ...)
Home
How to convert code to show it on HTML Blogger
▼
Showing posts with label
Javascript
.
Show all posts
Showing posts with label
Javascript
.
Show all posts
November 28, 2016
Example of using Models in Backbone JS
›
Models are data container where we can also add logics to data like validations, conversions or any specific computation if requires. In ...
November 26, 2016
Backbone JS Event ON example
›
ON Event Syntax: object.on(event, callback, [context]) It will bind a callback function to an object. The callback will be invoked whene...
March 01, 2016
How to Debug JavaScript code/functions of an application using breakpoint on browser
›
We can debug javascript functions/scripts of an application when running it on any browser like Internet Explorer, Mozilla, Chrome etc. Br...
September 26, 2011
Manage Browser History in javascript using YUI utility
›
Manage Browser History in javascript using YUI utility Using YUI utility one can manage browser history. It is supported in maximum brow...
September 18, 2011
Scrolling Status Bar using Javascript
›
Displays a scrolling Text in the browser status window <SCRIPT LANGUAGE="JavaScript"> <!-- hide from old browsers ...
September 16, 2011
Simplest way to disable Alt-Left key event to stop browser back event
›
There is a very simple way to disable Alt-Left Key event which is used to stop back browser event. Download this file "shortcut.js...
How to Disable or Hide Back Browser Button using JavaScript
›
How to Disable or Hide Back Browser Button using JavaScript: I have found lot of queries on internet about how to disable back browser bu...
2 comments:
September 15, 2011
How to enable scripting in your browser
›
To allow all Web sites in the Internet zone to run scripts, use the steps that apply to your browser: Windows Internet Explorer (all versi...
August 17, 2011
Disable backspace keyboard event for browser back button only
›
The following is the code to disable backspace keyboard event for browser back button only. Code works fine for IE, FF, Chrome jQuery(docu...
How to disable right click on browser page using javascript
›
document . oncontextmenu = new Function( "return false;" );
›
Home
View web version