Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

JavaScript Forum


You are currently viewing our JavaScript Forum as a guest. Please register to participate.
Login



Reply
carriage return validation in firefox on html form submission
Old 07-17-2006, 02:50 PM carriage return validation in firefox on html form submission
Junior Talker

Posts: 2
Name: sivasankar
Location: USA
Trades: 0
Hi,

I need to do carriage return validation in a textarea when user submits tthe data(Not on keypress event).

I have written the following code

if ((field.value).indexOf(String.fromCharCode(0xD)) > -1)
{

Validation message
}

The above code works well for IE.

but this code does not work in mozilla firefox 5.1. The index is returned as -1.

Please send the fix if anybody has idea about validating carriage return in firefox.

Thanks,

Siva
sivasankar is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 07-18-2006, 01:51 AM Re: carriage return validation in firefox on html form submission
funkdaddu's Avatar
Web Design Snob

Posts: 635
Trades: 0
Search for "\n" which is a new line in JS:
Code:
if (field.value.indexOf("\n") > -1) {
     alert("New line Found!");
}
This should work in IE too, but I don't have access to it.

Last edited by funkdaddu; 07-18-2006 at 10:28 AM..
funkdaddu is offline
Reply With Quote
View Public Profile Visit funkdaddu's homepage!
 
Old 07-18-2006, 10:02 PM Re: carriage return validation in firefox on html form submission
Junior Talker

Posts: 2
Name: sivasankar
Location: USA
Trades: 0
Thanks funkdaddu

It is working in IE and firefox.
sivasankar is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to carriage return validation in firefox on html form submission
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.24666 seconds with 12 queries