Click here to Skip to main content
15,881,600 members
Home / Discussions / JavaScript
   

JavaScript

 
GeneralRe: Redirecting to the URL after Submit Pin
Nathan Minier11-Mar-19 1:15
professionalNathan Minier11-Mar-19 1:15 
GeneralRe: Redirecting to the URL after Submit Pin
simpledeveloper12-Mar-19 6:32
simpledeveloper12-Mar-19 6:32 
GeneralRe: Redirecting to the URL after Submit Pin
simpledeveloper13-Mar-19 6:24
simpledeveloper13-Mar-19 6:24 
QuestionToggling two Radio buttons depending upon enum values in Angular 2.0 Pin
simpledeveloper27-Feb-19 13:38
simpledeveloper27-Feb-19 13:38 
QuestionAJAX,how to get more values from $.ajax({}) function in a Zend Controller Pin
serenimus25-Feb-19 8:49
serenimus25-Feb-19 8:49 
QuestionHow to identify if string is a phone number, Email address or a web address in Javascript? Pin
Member 1397526717-Feb-19 14:51
Member 1397526717-Feb-19 14:51 
SuggestionRe: How to identify if string is a phone number, Email address or a web address in Javascript? Pin
Richard MacCutchan17-Feb-19 22:05
mveRichard MacCutchan17-Feb-19 22:05 
AnswerRe: How to identify if string is a phone number, Email address or a web address in Javascript? Pin
Blikkies27-Feb-19 2:28
professionalBlikkies27-Feb-19 2:28 
I'm probably to late but here is it anyway. You can make use of Regular expression (Regex) to validation your strings.

Here is an example on how to check if the string is an email address using regex:

JavaScript
function validateEmail(email) {
    var re = /^(([^<>()[]\.,;:\s@"]+(.[^<>()[]\.,;:\s@"]+)*)|(".+"))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/;
    return re.test(String(email).toLowerCase());
}

QuestionAssignment help? Pin
Member 141452369-Feb-19 12:49
Member 141452369-Feb-19 12:49 
AnswerRe: Assignment help? Pin
Richard MacCutchan9-Feb-19 22:51
mveRichard MacCutchan9-Feb-19 22:51 
AnswerRe: Assignment help? Pin
ZurdoDev27-Feb-19 3:50
professionalZurdoDev27-Feb-19 3:50 
QuestionJavaScript Environment Pin
Member 141438347-Feb-19 21:44
Member 141438347-Feb-19 21:44 
AnswerRe: JavaScript Environment Pin
Richard MacCutchan7-Feb-19 22:31
mveRichard MacCutchan7-Feb-19 22:31 
QuestionJavaScript in Microsoft Visual Studio Pin
Member 141438347-Feb-19 21:43
Member 141438347-Feb-19 21:43 
AnswerRe: JavaScript in Microsoft Visual Studio Pin
Richard MacCutchan7-Feb-19 22:29
mveRichard MacCutchan7-Feb-19 22:29 
QuestionSimple Modal Dialog Pin
Bram van Kampen31-Jan-19 11:58
Bram van Kampen31-Jan-19 11:58 
AnswerRe: Simple Modal Dialog Pin
Richard Deeming8-Feb-19 1:09
mveRichard Deeming8-Feb-19 1:09 
QuestionCalling Web api from Angular Service and Component Pin
simpledeveloper29-Jan-19 7:07
simpledeveloper29-Jan-19 7:07 
QuestionFor loop query Pin
Member 1413327128-Jan-19 22:54
Member 1413327128-Jan-19 22:54 
QuestionRe: For loop query Pin
Richard MacCutchan28-Jan-19 23:35
mveRichard MacCutchan28-Jan-19 23:35 
AnswerRe: For loop query Pin
ZurdoDev30-Jan-19 2:08
professionalZurdoDev30-Jan-19 2:08 
AnswerRe: For loop query Pin
Suresh Madhavaraju11-Feb-19 3:20
Suresh Madhavaraju11-Feb-19 3:20 
AnswerRe: For loop query Pin
W Balboos, GHB7-Mar-19 7:18
W Balboos, GHB7-Mar-19 7:18 
QuestionDebugging Pin
Bram van Kampen26-Jan-19 14:14
Bram van Kampen26-Jan-19 14:14 
AnswerRe: Debugging Pin
Richard Deeming28-Jan-19 1:01
mveRichard Deeming28-Jan-19 1:01 

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.