An open API service indexing awesome lists of open source software.

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)

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;
}
}