https://github.com/aryanvbw/sop
12th HSC Information Technology Chapter Wise SOP List 1.Advanced Web Designing,2.JavaScript,3.Server Side Scripting (PHP)
https://github.com/aryanvbw/sop
Last synced: 5 months ago
JSON representation
12th HSC Information Technology Chapter Wise SOP List 1.Advanced Web Designing,2.JavaScript,3.Server Side Scripting (PHP)
- Host: GitHub
- URL: https://github.com/aryanvbw/sop
- Owner: AryanVBW
- Created: 2024-02-09T11:11:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-03T15:53:13.000Z (over 2 years ago)
- Last Synced: 2025-09-06T19:02:47.866Z (10 months ago)
- Language: HTML
- Homepage: https://vivek.aryanvbw.live/SOP/
- Size: 2.33 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

Hello, I'm Vivek đź‘‹
# Chapter Wise SOP List
## Advanced Web Designing
SOP 1
*[Click here to view codes.](https://github.com/AryanVBW/SOP/tree/main/chap_1-sop/sop1)*
SOP 2
*[Click here to view codes.](https://github.com/AryanVBW/SOP/tree/main/chap_1-sop/sop2)*
SOP 3
*[Click here to view codes](https://github.com/AryanVBW/SOP/tree/main/chap_1-sop/sop3)*
SOP 4
*[Click here to view codes](https://github.com/AryanVBW/SOP/tree/main/chap_1-sop/sop4)*
SOP 5
*[Click here to view codes](https://github.com/AryanVBW/SOP/tree/main/chap_1-sop/sop5)*
## JavaScript
SOP 1
*You can simply copy and paste this:
```html
Sop 2 JavaScript
Information Form
Your Name
Address
Contact
Email
function validate_email()
{
var x=f1.txt_email.value;
var at_pos=x.indexOf("@");
var last_pos=x.lastIndexOf("@");
var firstdot_pos=x.indexOf(".");
var dot_pos=x.lastIndexOf(".");
if (at_pos<1||dot_pos<at_pos+2||dot_pos+2>=x.length||firstdot_pos<at_pos||at_pos<last_pos)
{
alert("Not an Valid email address");
f1.txt_email.focus();
}
else
{
alert("Valid Email Address");
return true;
}
}






