Highlight Row on Rollover





ranking Sort Sort   |   date Sort Sort   |   member Sort Sort
Syndication

9
Date Submitted Mon. Apr. 3rd, 2006 8:59 AM
Revision 1
Coder mattrmiller
Tags Back | Button | JavaScript
Comments 1 comments
A simple back button in JavaScript.
9
Date Submitted Fri. Aug. 4th, 2006 10:16 AM
Revision 1
Syntax Master sundaramkumar
Tags JavaScript
Comments 0 comments
function to validate mac address
9
Date Submitted Thu. Aug. 10th, 2006 2:35 AM
Revision 1
Syntax Master sundaramkumar
Tags JavaScript
Comments 0 comments
Remove control character from a string
9
Date Submitted Wed. Aug. 16th, 2006 9:33 PM
Revision 1
Syntax Master sundaramkumar
Tags JavaScript
Comments 0 comments
Find min and max of an array
10
Date Submitted Tue. Feb. 28th, 2006 5:52 AM
Revision 1
Scripter TimYates
Tags HTML | JavaScript
Comments 0 comments
A prototype function to get an array of elements by id in an array
10
Date Submitted Wed. Sep. 27th, 2006 11:03 AM
Revision 1
Scripter shachi
Tags click | Control | ctrl/shift | JavaScript
Comments 3 comments
Gives you control to perform actions when the control key and the mouse button is clicked in the same time. Something similar to selecting elements in Windows with ctrl+click.

Just change the event.ctrlKey to event.shiftKey to make it shift+click. If you don't get it don't worry the snippet contains the demo for shift+click too.

You may need to change the event.which though 1 = left click, 2 = middle click, 3 = right click(at least in firefox 1.5.0.5)
10
Date Submitted Tue. Dec. 5th, 2006 2:15 PM
Revision 1
Scripter Casper42
Tags ASPX | CSharp | CSS | JavaScript
Comments 3 comments
This snippet allows an aspx page (c#) to accept URL parameters to allow styles or script to be dynamically appended to the rendered page.

I wrote this simple snippet to allow one of our vendors to accept a style override so that their application would morph into something more closely resembling our own portal application. Please see screenshots for clarification.

Original Vendor Application

Vendor Application with Style Override via URL
10
Date Submitted Wed. Dec. 20th, 2006 10:26 AM
Revision 1
Scripter shachi
Tags JavaScript | manipulation | removeCharAt | String
Comments 1 comments
This simple function simply removes the character at the given index from a string.

NOTE: The count starts from 0
10
Date Submitted Thu. Dec. 21st, 2006 3:48 AM
Revision 1
Scripter shachi
Tags addCharAt | JavaScript | manipulation | String
Comments 0 comments
Adds any character at the given index of a string.

NOTE: Count starts from 0
10
Date Submitted Wed. Mar. 14th, 2007 12:06 PM
Revision 1
Scripter shachi
Tags Cookie | JavaScript | object
Comments 0 comments
This is a simple cookie object that handles some of the basic cookie functions and which is kind of like a simple cookie-object parser.

Hope you like it.