Click here to Skip to main content
15,892,298 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Sending a form to your email address Pin
Christopher Clarke17-Aug-08 12:42
Christopher Clarke17-Aug-08 12:42 
GeneralRe: Sending a form to your email address Pin
wizard 20220-Aug-08 17:46
wizard 20220-Aug-08 17:46 
AnswerRe: Sending a form to your email address Pin
naresh thakur4-Sep-08 3:13
naresh thakur4-Sep-08 3:13 
QuestionCultureInfo - Arabic Currency formatting Pin
Blumen16-Aug-08 0:06
Blumen16-Aug-08 0:06 
AnswerRe: CultureInfo - Arabic Currency formatting [modified] Pin
Jörgen Andersson16-Aug-08 10:42
professionalJörgen Andersson16-Aug-08 10:42 
GeneralRe: CultureInfo - Arabic Currency formatting Pin
Blumen16-Aug-08 18:27
Blumen16-Aug-08 18:27 
QuestionJavaScript change individual characters to upper case Pin
jonatec15-Aug-08 0:04
jonatec15-Aug-08 0:04 
AnswerRe: JavaScript change individual characters to upper case Pin
astanton197815-Aug-08 7:29
astanton197815-Aug-08 7:29 
I don't think there is a way to set the cursor position in a text field by using JavaScript. You may be able to do it using IE specific calls, and I'm not sure these are even still valid.
http://www.faqts.com/knowledge_base/view.phtml/aid/1052/fid/130[^]


Oh, and dont use
var o = document.all;

document all is not supported by all browsers, and is going to really pig up your application (and irritate the users as much as forcing CAPS does - cant you handle the uppercase on the server side and save yourself the irritation ?).

just use something like this.
var o = document.getElementById('txt1');
o.value = o.value.toUpperCase();
o = null;
GeneralRe: JavaScript change individual characters to upper case Pin
Perspx15-Aug-08 10:58
Perspx15-Aug-08 10:58 
GeneralRe: JavaScript change individual characters to upper case Pin
jonatec18-Aug-08 0:19
jonatec18-Aug-08 0:19 
QuestionDevelope Web service Pin
Hemant Thaker14-Aug-08 21:45
Hemant Thaker14-Aug-08 21:45 
AnswerRe: Develope Web service[Ignore Repost] Pin
Manas Bhardwaj15-Aug-08 1:43
professionalManas Bhardwaj15-Aug-08 1:43 
QuestionCustom data types in web services and web references Pin
Yellowseed14-Aug-08 11:58
Yellowseed14-Aug-08 11:58 
AnswerRe: Custom data types in web services and web references Pin
Shog914-Aug-08 14:35
sitebuilderShog914-Aug-08 14:35 
GeneralRe: Custom data types in web services and web references Pin
Yellowseed15-Aug-08 3:58
Yellowseed15-Aug-08 3:58 
QuestionRemeber input elements when changing page Pin
William Engberts14-Aug-08 3:53
William Engberts14-Aug-08 3:53 
AnswerRe: Remeber input elements when changing page Pin
Mohammad Dayyan15-Aug-08 11:20
Mohammad Dayyan15-Aug-08 11:20 
QuestionAJAX : Retrieve Specific Tag by id & count tag from external html Pin
Lu5ck14-Aug-08 3:24
Lu5ck14-Aug-08 3:24 
AnswerRe: AJAX : Retrieve Specific Tag by id & count tag from external html Pin
SamRST14-Aug-08 3:52
SamRST14-Aug-08 3:52 
AnswerRe: AJAX : Retrieve Specific Tag by id & count tag from external html Pin
Shog914-Aug-08 9:41
sitebuilderShog914-Aug-08 9:41 
GeneralRe: AJAX : Retrieve Specific Tag by id & count tag from external html Pin
Lu5ck14-Aug-08 16:29
Lu5ck14-Aug-08 16:29 
QuestionDynamic row adding..... Pin
SamRST14-Aug-08 1:50
SamRST14-Aug-08 1:50 
AnswerRe: Dynamic row adding..... Pin
SomeGuyThatIsMe14-Aug-08 7:16
SomeGuyThatIsMe14-Aug-08 7:16 
GeneralRe: Dynamic row adding..... Pin
SamRST16-Aug-08 19:52
SamRST16-Aug-08 19:52 
GeneralRe: Dynamic row adding..... Pin
SomeGuyThatIsMe18-Aug-08 2:02
SomeGuyThatIsMe18-Aug-08 2:02 

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.