Click here to Skip to main content
15,888,283 members
Home / Discussions / JavaScript
   

JavaScript

 
GeneralRe: Javascript validation Pin
arya168514-Oct-11 7:33
arya168514-Oct-11 7:33 
AnswerRe: Javascript validation Pin
Mohibur Rashid2-Oct-11 19:11
professionalMohibur Rashid2-Oct-11 19:11 
QuestionRetry Cancel Pin
berba29-Sep-11 0:59
berba29-Sep-11 0:59 
AnswerRe: Retry Cancel Pin
twseitex29-Sep-11 9:15
twseitex29-Sep-11 9:15 
AnswerRe: Retry Cancel Pin
Mohibur Rashid2-Oct-11 19:06
professionalMohibur Rashid2-Oct-11 19:06 
GeneralRe: Retry Cancel Pin
berba3-Oct-11 5:14
berba3-Oct-11 5:14 
QuestionHow can i change regex to work in javascript Pin
AditSheth27-Sep-11 20:54
AditSheth27-Sep-11 20:54 
AnswerRe: How can i change regex to work in javascript Pin
Matt Meyer28-Sep-11 4:29
Matt Meyer28-Sep-11 4:29 
The forward slashes are causing your problems because they're telling the interpreter that it's the end of the expression since they're not escaped. Converting your expression from the original into the javascript should only require a copy/paste and manually escaping the pattern's forward slashes. Ie, (?:https?|ftp|file)://|www\.|ftp\.) becomes (?:https?|ftp|file):\/\/|www\.|ftp\.)

Here's a Regex reference for javascript that can help you convert your expression:
http://www.w3schools.com/jsref/jsref_obj_regexp.asp[^]

Also, there's a regular expression forum on here:
http://www.codeproject.com/Forums/1580841/Regular-Expressions.aspx[^]
They will probably give you more help about regex syntax problems than the javascript forum.
QuestionHow to use Jquery on a Dynamical created Textbox Pin
Vimalsoft(Pty) Ltd27-Sep-11 2:59
professionalVimalsoft(Pty) Ltd27-Sep-11 2:59 
AnswerRe: How to use Jquery on a Dynamical created Textbox Pin
AspDotNetDev27-Sep-11 7:42
protectorAspDotNetDev27-Sep-11 7:42 
AnswerRe: How to use Jquery on a Dynamical created Textbox Pin
AditSheth27-Sep-11 20:24
AditSheth27-Sep-11 20:24 
GeneralRe: How to use Jquery on a Dynamical created Textbox Pin
Vimalsoft(Pty) Ltd27-Sep-11 22:27
professionalVimalsoft(Pty) Ltd27-Sep-11 22:27 
GeneralRe: How to use Jquery on a Dynamical created Textbox Pin
AditSheth28-Sep-11 0:40
AditSheth28-Sep-11 0:40 
Questionhow to timer set image Pin
pravin thatar26-Sep-11 22:49
pravin thatar26-Sep-11 22:49 
QuestionWhat this code is doing? Pin
treuveni23-Sep-11 22:31
treuveni23-Sep-11 22:31 
AnswerRe: What this code is doing? Pin
André Kraak23-Sep-11 22:48
André Kraak23-Sep-11 22:48 
QuestionGoogle API v2 is Free? Pin
MaulikDusara23-Sep-11 19:58
MaulikDusara23-Sep-11 19:58 
AnswerRe: Google API v2 is Free? Pin
Richard MacCutchan23-Sep-11 22:57
mveRichard MacCutchan23-Sep-11 22:57 
QuestionJava script -Print Pin
kathyani21-Sep-11 2:13
kathyani21-Sep-11 2:13 
AnswerRe: Java script -Print Pin
Pete O'Hanlon21-Sep-11 2:46
mvePete O'Hanlon21-Sep-11 2:46 
GeneralRe: Java script -Print Pin
kathyani21-Sep-11 2:54
kathyani21-Sep-11 2:54 
GeneralRe: Java script -Print Pin
Pete O'Hanlon21-Sep-11 3:05
mvePete O'Hanlon21-Sep-11 3:05 
JokeRe: Java script -Print PinPopular
Manfred Rudolf Bihy21-Sep-11 3:43
professionalManfred Rudolf Bihy21-Sep-11 3:43 
GeneralRe: Java script -Print Pin
Pete O'Hanlon21-Sep-11 4:47
mvePete O'Hanlon21-Sep-11 4:47 
QuestionProblem Displaying Data Island [modified] Pin
ASPnoob20-Sep-11 19:34
ASPnoob20-Sep-11 19:34 

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.