Skip to content

Instantly share code, notes, and snippets.

View SompalSingh's full-sized avatar
🎯
Focusing

Sompal Singh SompalSingh

🎯
Focusing
View GitHub Profile
@SompalSingh
SompalSingh / angularjs-form-validation-email-mobile-number-validation.markdown
Created August 7, 2018 09:49
AngularJS form validation - email & mobile number validation

AngularJS form validation - email & mobile number validation

This pen helps you validate a 10-digit mobile number(which is used in India) and email address using ng-pattern directive, you can edit the pattern string in JS file for customizing number of digit of contact number.

A Pen by Bhupinder Singh on CodePen.

License.

@SompalSingh
SompalSingh / index.html
Created August 7, 2018 06:05
jQuery UI Datepicker with AngularJS
<div id="wrapper" ng-app="myApp">
<p>{{datePicker || "00/00/0000"}}</p>
<input type="text" ng-model="datePicker" datepicker />
</div>