Click here to Skip to main content
15,917,176 members
Home / Discussions / Web Development
   

Web Development

 
QuestionFlickering when resizing the browser Pin
3nbar, A7mad A23-Jun-06 4:27
3nbar, A7mad A23-Jun-06 4:27 
AnswerRe: Flickering when resizing the browser Pin
Edbert P26-Jun-06 16:22
Edbert P26-Jun-06 16:22 
QuestionDreamweaver problem on #include code Pin
campbells22-Jun-06 22:27
campbells22-Jun-06 22:27 
AnswerRe: Dreamweaver problem on #include code Pin
Guffa23-Jun-06 0:44
Guffa23-Jun-06 0:44 
GeneralRe: Dreamweaver problem on #include code Pin
campbells23-Jun-06 16:18
campbells23-Jun-06 16:18 
AnswerRe: Dreamweaver problem on #include code Pin
Guffa23-Jun-06 20:46
Guffa23-Jun-06 20:46 
GeneralRe: Dreamweaver problem on #include code Pin
campbells23-Jun-06 21:35
campbells23-Jun-06 21:35 
Questionhelp needed for Java script Pin
kalyan_vb22-Jun-06 11:06
kalyan_vb22-Jun-06 11:06 
I have written this code for a text box which accepts only number, but it is failing when I press any other key with shift button, can any body help me to solve this problem.

function isNumericKeyStroke()
{
var returnValue = false;
var keyCode = (window.event.which) ? window.event.which : window.event.keyCode;

if ( ((keyCode >= 48) && (keyCode <= 57)) || // All numerics
(keyCode == 8) || // Backspace
(keyCode == 13) ) // Carriage Return
returnValue = true;

if ( window.event.returnValue )
window.event.returnValue = returnValue;

return returnValue;
}
AnswerRe: help needed for Java script [modified] Pin
Steve Echols22-Jun-06 19:51
Steve Echols22-Jun-06 19:51 
GeneralRe: help needed for Java script Pin
Guffa22-Jun-06 23:50
Guffa22-Jun-06 23:50 
QuestionDatagrid Select Statement [modified] Pin
Soot22-Jun-06 4:30
Soot22-Jun-06 4:30 
AnswerRe: Datagrid Select Statement Pin
minhpc_bk22-Jun-06 16:03
minhpc_bk22-Jun-06 16:03 
AnswerRe: Datagrid Select Statement Pin
Soot26-Jun-06 6:27
Soot26-Jun-06 6:27 
GeneralRe: Datagrid Select Statement Pin
Soot10-Jul-06 8:13
Soot10-Jul-06 8:13 
Question1.1 and 2.0 Pin
Fred_Smith22-Jun-06 3:16
Fred_Smith22-Jun-06 3:16 
AnswerPS Pin
Fred_Smith22-Jun-06 3:21
Fred_Smith22-Jun-06 3:21 
GeneralRe: PS Pin
Paddy Boyd22-Jun-06 5:03
Paddy Boyd22-Jun-06 5:03 
GeneralRe: PS Pin
RichardGrimmer22-Jun-06 5:12
RichardGrimmer22-Jun-06 5:12 
GeneralRe: PS Pin
Fred_Smith22-Jun-06 6:33
Fred_Smith22-Jun-06 6:33 
AnswerRe: PS Pin
Guffa22-Jun-06 10:34
Guffa22-Jun-06 10:34 
QuestionQUERY: JS CTRL, SHIFT, Context Menu Pin
dhruba.bandopadhyay22-Jun-06 0:39
dhruba.bandopadhyay22-Jun-06 0:39 
AnswerRe: QUERY: JS CTRL, SHIFT, Context Menu Pin
RichardGrimmer22-Jun-06 5:14
RichardGrimmer22-Jun-06 5:14 
GeneralRe: QUERY: JS CTRL, SHIFT, Context Menu Pin
dhruba.bandopadhyay5-Jul-06 0:56
dhruba.bandopadhyay5-Jul-06 0:56 
QuestionCanceling the window.unload() event Pin
SatyajitV21-Jun-06 21:11
SatyajitV21-Jun-06 21:11 
AnswerRe: Canceling the window.unload() event Pin
minhpc_bk22-Jun-06 16:18
minhpc_bk22-Jun-06 16:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.