form-css-javascript part1
form-css-javascript part1
HTML FORMS:
HTML Forms are required to collect some data from the site visitor. For example, during
user registration you would like to collect information such as name, email address, aadhaar card,
etc. A form will take input from the site visitor and then will post it to a back-end application such
as CGI, ASP,JSP or PHP script etc. The back-end application will perform required processing on
the passed data based on defined business logic inside the application. There are various form
elements available like text fields, text area fields, drop-down menus, radio buttons, checkboxes,
etc.
<form action="Script URL" method="GET|POST"> form elements like input, text area etc. </form>
Get vs post
In GET method, values are visible in the URL. In POST method, values are not
visible in the URL.
GET has a limitation on the length of the POST has no limitation on the length
values, generally 255 characters. of the values.
Get request is more efficient and used more than Post request is less efficient and used less
Post. than get.
GET is less secure compared to POST because data POST is a little safer than GET
sent is part of the URL
Never use GET when sending passwords or other
sensitive information!
HTML Form Controls :
There are different types of form controls that you can use to collect data using HTML
➢ Text Input Controls
➢ Checkboxes Controls
➢ Radio Box Controls
➢ Select Box Controls
➢ File Select boxes
➢ Hidden Controls
➢ Clickable Buttons
➢ Submit and Reset Button
Example:
<form>
First name:<br>
<input type="text" name="firstname"><br>
Last name:<br>
<input type="text" name="lastname">
</form>
2) Password input controls - This is also a single- line text input but it masks the character as
soon as a user enters it. They are also created using HTML <input> tag.
Input Type Password
<form>
User name:<br>
User password:<br>
<input type="password" name="psw">
3) Multi-line text input controls - This is used when the user is required to give details that may
be longer than a single sentence. Multi- line input controls are created using HTML
<textarea> tag.
<!DOCTYPE html>
<html>
<head>
<title>Multiple-Line Input Control</title>
</head>
<body>
<form> Description: <br />
<textarea rows="5" cols="50" name="description"> Enter description here... </textarea>
</form>
</body>
</html>
Checkboxes Controls:-
Checkboxes are used when more than one option is required to be selected. They are also
created using HTML <input> tag but type attribute is set to checkbox.
Here is an example HTML code for a form with two checkboxes:
<!DOCTYPE html>
<html> <head> <title>Checkbox Control</title> </head>
<body>
<form>
<input type="checkbox" name="C++" value="on"> C++
<br>
<input type="checkbox" name="C#" value="on"> C#
<br>
<input type="checkbox" name="JAVA" value="on"> JAVA
</body> </html>
<!DOCTYPE html>
<html>
<head>
<title>Select Box Control</title>
</head>
<body>
<form>
<select name="dropdown">
<option value="C++" selected>C++</option>
<option value="JAVA">JA VA</option>
<option value="HTML">HTML</option>
</select>
</form>
</body>
</html>
File Select boxes:- If you want to allow a user to upload a file to your web site, you will
need to use a file upload box, also known as a file select box. This is also created using the
<input > element but type attribute is set to file.
The accept attribute specifies a filter for what file types the user can pick from the file input dialog box.
<input type="file" name="avatar" accept="image/png,image/jpeg">
• The string audio/* meaning "any audio file".
• The string video/* meaning "any video file".
• The string image/* meaning "any image file".
For example: .jpg, .pdf, or .doc.
Hidden Controls:- Hidden form controls are used to hide data inside the page which later on
can be pushed to the server. This control hides inside the code and does not appear on the
actual page. For example, following hidden form is being used to keep current page number.
When a user will click next page then the value of hidden control will be sent to the web server
and there it will decide which page will be displayed next based on the passed current page.
<body>
Button Controls:-
There are various ways in HTML to create clickable buttons. You can also create a clickable button
using <input> tag by setting its type attribute to button. The type attribute can take the following
values:
<!DOCTYPE html>
<html>
<head>
<title>File Upload Box</title>
</head>
<body>
<form>
<input type="submit" name="submit" value="Submit" />
<input type="reset" name="reset" value="Reset" />
</body> </html>
Here are the different input types you can use in HTML:
• <input type="button">
• <input type="checkbox">
• <input type="color">
• <input type="date">
• <input type="datetime-local">
• <input type="email">
• <input type="file">
• <input type="hidden">
• <input type="image">
• <input type="month">
• <input type="number">
• <input type="password">
• <input type="radio">
• <input type="range">
• <input type="reset">
• <input type="search">
• <input type="submit">
• <input type="tel">
• <input type="text">
• <input type="time">
• <input type="url">
• <input type="week">
Depending on browser support, a color picker can show up in the input field.
Example
<form>
<label for="favcolor">Select your favorite color:</label>
<input type="color" id="favcolor" name="favcolor">
</form>
Depending on browser support, a date picker can show up in the input field.
Example
<form>
<label for="birthday">Birthday:</label>
<input type="date" id="birthday" name="birthday">
</form>
You can also use the min and max attributes to add restrictions to dates:
Example
<form>
<label for="datemax">Enter a date before 1980-01-01:</label>
<input type="date" id="datemax" name="datemax" max="1979-12-31"><br><br>
<label for="datemin">Enter a date after 2000-01-01:</label>
<input type="date" id="datemin" name="datemin" min="2000-01-02">
</form>
Depending on browser support, a date picker can show up in the input field.
Example
<form>
<label for="birthdaytime">Birthday (date and time):</label>
<input type="datetime-local" id="birthdaytime" name="birthdaytime">
</form>
Depending on browser support, the e-mail address can be automatically validated when
submitted.
Example
<form>
<label for="email">Enter your email:</label>
<input type="email" id="email" name="email">
</form>
Depending on browser support, a date picker can show up in the input field.
Example
<form>
<label for="bdaymonth">Birthday (month and year):</label>
<input type="month" id="bdaymonth" name="bdaymonth">
</form>
The following example displays a numeric input field, where you can enter a value from 1 to 5:
Example
<form>
<label for="quantity">Quantity (between 1 and 5):</label>
<input type="number" id="quantity" name="quantity" min="1" max="5">
</form
Example
Input fields with initial (default) values:
<form>
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" value="John"><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname" value="Doe">
</form>
The readonly Attribute
The input readonly attribute specifies that an input field is read-only.
A read-only input field cannot be modified (however, a user can tab to it, highlight it, and copy
the text from it).
The value of a read-only input field will be sent when submitting the form!
Example
A read-only input field:
<form>
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" value="John" readonly><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname" value="Doe">
</form>
The value of a disabled input field will not be sent when submitting the form!
Example
A disabled input field:
<form>
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" value="John" disabled><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname" value="Doe">
</form>
Example
Set a width for an input field:
<form>
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" size="50"><br>
<label for="pin">PIN:</label><br>
<input type="text" id="pin" name="pin" size="4">
</form>
Note: When a maxlength is set, the input field will not accept more than the specified number of
characters. However, this attribute does not provide any feedback. So, if you want to alert the
user, you must write JavaScript code.
Example
Set a maximum length for an input field:
<form>
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" size="50"><br>
<label for="pin">PIN:</label><br>
<input type="text" id="pin" name="pin" maxlength="4" size="4">
</form>
The min and max attributes work with the following input types: number, range, date, datetime-
local, month, time and week.
Tip: Use the max and min attributes together to create a range of legal values.
Example
Set a max date, a min date, and a range of legal values:
<form>
<label for="datemax">Enter a date before 1980-01-01:</label>
<input type="date" id="datemax" name="datemax" max="1979-12-31"><br><br>
The multiple attribute works with the following input types: email, and file.
Example
A file upload field that accepts multiple values:
<form>
<label for="files">Select files:</label>
<input type="file" id="files" name="files" multiple>
</form>
The pattern attribute works with the following input types: text, date, search, url, tel, email,
and password.
Example1
<!DOCTYPE html>
<html>
<body>
<form action="#.ext" method="post">
<label for="plz">PLZ: </label>
<input required
type="text"
id="plz" name="plz"
pattern="[0-9]{5}"
placeholder="12345"
title="Please enter the 5-digit postcode">
<input type="submit">
</form>
</body>
</html>
An input field that can contain only three letters (no numbers or special characters):
<form>
<label for="country_code">Country code:</label>
<input type="text" id="country_code" name="country_code"
pattern="[A-Za-z]{3}" title="Three letter country code">
</form>
character selection
With the square parenthesis [ ] you can specify a list of characters as a pattern. However,
the parenthesis only stands for one characters from the selection. [ABCD] So only A or B or
C or D would be valid here. Since the letters in this example are continuous, you can also
write the expression with the hyphen. [A-D] .
All upper case letters [A-Z] , all lower case letters [a-z] and all numbers. [0-9] .
Example
Only a capital letter from the selection A-D is accepted as correct input here.
<input type="text" pattern="[ABCD]">
A E
B H
C U
D Z
a number
<input type="text" pattern="[0-247-9]">
0 3
1 5
7 6
Exclude characters
As the list in the square parenthesis stands for only one element, you can exclude
characters by skilful selection. The patterns [0-247-9] or [01247-9] allow only the numbers 0
to 2, the 4 and the numbers 7 to 9
Of course we often need all upper and lower case letters [A-Za-z]
Setting the area backwards doesn't work by the way. [Z-A]or [9-0]are invalid, the pattern is ignored, so any
input is valid. And that's not what we want.
Bauer haben
Ahorn Kind
Mocca Kissen
Halle Die 3
12345 123456
98765 1234
85219 Kissen
01022 Die 3
AB-C123 AB-c123
DE-R568 AB-CD12
ZU-M852 A-C123
UL-M800 AB-CD1234
Character selection with repetitions
In curly parenthesis { } you can specify the number of repetitions. You simply write it
directly after your character selection. [A-Z]{20}
For a 10-digit order number of a mail order company you could instead of [0-9][0-9][0-
9][0-9][0-9][0-9][0-9][0-9][0-9][0-9] so [0-9]{10} write as a sample
DE- Postcode 5 digits: Format: nnnnn
<input type="text" pattern="[0-9]{5}">
12345 123456
98765 1234
85219 Kissen
01022 Die 3
DE98123412341234123412 De98123412341234123412
DE12345678901234567890 DE123456789O1234567890
Character selection with minimum and maximum length
For example, if you want to allow at least five, but no more than 10 characters, you would
write [A-Za-z0-9]{5,10}
If you only want to specify a minimum number of characters, you can omit the max
parameter {2, } , but you must specify the comma, otherwise the number in parenthesis
would be the fixed number of characters. If you only want to specify a maximum number of
characters, the minimum number must be specified anyway. {0,4}
Another possibility is to use the plus sign, the asterisk or the question mark.
The plus sign stands for at least one occurrence of the expression [0-9]+ .
The asterisk [0-9]* stands for none or any number of occurrences.
The question mark [0-9]? stands for once or no time.
<input type="text" pattern="[A-z]{1,3}">
<input type="text" pattern="[A-Z][a-z]{0,12}">
<input type="text" pattern="[A-Z][a-z]{2,}">
Kaffee Expresso
Tee Punsch
Saft Glühbier
12345 123456
98765 1234
85219 Kissen
01022 Die 3
Bauer 3sel
Ahorn 123456
Mocca 5alz
Halle Die 3
Positive predictions
a total of 5 characters long, the dot somewhere in the middle Format: n.nnn oder nn.nn oder nnn.n
<input type="text" pattern="(?=.{5}$)\d+\.\d+">
1.234 1234
12.34 .1234
123.4 1234.
Zustand Berlin
Tanz Natur
Wutanfall Wutach
Password must be at least 8 characters long and must contain upper case letters, lower case letters, numbers
and special characters!
<input type="text" pattern="(?=.{8,}$)(?=.*[A-Z])(?=.*[a-
z])(?=.*\d)(?=.*\W).*">
The short hint is displayed in the input field before the user enters a value.
The placeholder attribute works with the following input types: text, search, url, tel, email, and
password.
Example
An input field with a placeholder text:
<form>
<label for="phone">Enter a phone number:</label>
<input type="tel" id="phone" name="phone"
placeholder="123-45-678"
pattern="[0-9]{3}-[0-9]{2}-[0-9]{3}">
</form>
The required attribute works with the following input types: text, search, url, tel, email,
password, date pickers, number, checkbox, radio, and file.
Example
A required input field:
<form>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
</form>
Tip: This attribute can be used together with the max and min attributes to create a range of
legal values.
The step attribute works with the following input types: number, range, date, datetime-local,
month, time and week.
Example
An input field with a specified legal number intervals:
<form>
<label for="points">Points:</label>
<input type="number" id="points" name="points" step="3">
</form>
Example
Let the "First name" input field automatically get focus when the page loads:
<form>
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" autofocus><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname">
</form>
The height and width Attributes
The input height and width attributes specify the height and width of an <input
type="image"> element.
Example
Define an image as the submit button, with height and width attributes:
<form>
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname"><br><br>
<label for="lname">Last name:</label>
<input type="text" id="lname" name="lname"><br><br>
<input type="image" src="img_submit.gif" alt="Submit" width="48" height="48">
</form>
Autocomplete allows the browser to predict the value. When a user starts to type in a field, the
browser should display options to fill in the field, based on earlier typed values.
The autocomplete attribute works with <form> and the following <input> types: text, search, url,
tel, email, password, datepickers, range, and color.
Example
An HTML form with autocomplete on, and off for one input field:
CSS Syntax
A CSS rule set contains a selector and a declaration block.
Selector: Selector indicates the HTML element you want to style. It could be any tag like <h1>, <title> etc.
Declaration Block: The declaration block can contain one or more declarations separated by a semicolon. For the above example, there are
two declarations:
1. color: yellow;
2. font-size: 11 px;
Property: A Property is a type of attribute of HTML element. It could be color, border etc.
Value: Values are assigned to CSS properties. In the above example, value "yellow" is assigned to color property.
</body>
Internal CSS: An internal CSS is used to define a style for a single HTML page. An internal CSS
is defined in the <head> section of an HTML page, within a <style> element:
An internal stylesheet is declared using the <style> tag.
The <style> tag specifies the content type of a stylesheet with its type attribute which should be
set to "text/css".
<html>
<head>
<style>
body {background-color: powderblue;}
h1 {color: blue;}
p {color: red;}
</style>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
External CSS:-
An external style sheet is used to define the style for many HTML pages. With an external style
sheet, you can change the look of an entire web site, by changing one file! To use an external
style sheet, add a link to it in the <head> section of the HTML page:
<html>
<head>
<link rel="stylesheet" href="a.css">
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
An external style sheet can be written in any text editor. The file must not contain any HTML
code, and must be saved with a .css extension.
Here is how the "styles.css" looks:
h1 { color: blue; }
p { color: red; }
CSS Selector
CSS selectors are used to select the content you want to style. Selectors are the part of CSS rule set. CSS selectors select HTML elements
according to its id, class, type, attribute etc.
1. <!DOCTYPE html>
2. <html>
3. <head>
4. <style>
5. p{
6. text-align: center;
7. color: blue;
8. }
9. </style>
10. </head>
11. <body>
12. <p>This style will be applied on every paragraph.</p>
13. <p id="para1">Me too!</p>
14. <p>And me!</p>
15. </body>
16. </html>
Output:
Me too!
And me!
2) CSS Id Selector
The id selector selects the id attribute of an HTML element to select a specific element. An id is always unique within the page so it is chosen
to select a single, unique element.
It is written with the hash character (#), followed by the id of the element.
1. <!DOCTYPE html>
2. <html>
3. <head>
4. <style>
5. #para1 {
6. text-align: center;
7. color: blue;
8. }
9. </style>
10. </head>
11. <body>
12. <p id="para1">Hello Trident</p>
13. <p>This paragraph will not be affected.</p>
14. </body>
15. </html>
Output:
Hello Trident
1. <!DOCTYPE html>
2. <html>
3. <head>
4. <style>
5. .center {
6. text-align: center;
7. color: blue;
8. }
9. </style>
10. </head>
11. <body>
12. <h1 class="center">This heading is blue and center-aligned.</h1>
13. <p class="center">This paragraph is blue and center-aligned.</p>
14. </body>
15. </html>
Output:
If you want to specify that only one specific HTML element should be affected then you should use the element name with class selector.
1. <!DOCTYPE html>
1. <html>
2. <head>
3. <style>
4. p.center {
5. text-align: center;
6. color: blue;
7. }
8. </style>
9. </head>
10. <body>
11. <h1 class="center">This heading is not affected</h1>
12. <p class="center">This paragraph is blue and center-aligned.</p>
13. </body>
14. </html>
Output:
Classes
This text will be green, bold, arial, and have a font size of 10
ID's
ID's are specified with the # (pound sign) followed by the ID name in an internal or external
stylesheet.
<style type="text/css"> #data { background-color: lightblue; border: 1px solid #8da1b5; font-
family: Verdana; color: #4f4f4f; } </style>
In the above example, the data ID is specified to have a light blue background, a blue border,
Verdana font, and black text. It is also specified to be positioned inside a container that is 200
pixels in width and 200 pixels in height. Any element that is specified with the data id will get
these properties.
Based on the stylesheet from above:
<div id="data"> This data will have a light blue background, a blue border, its font will be
Verdana, and it will be black. It will also be positioned inside a container that is 200 pixels in width
and 200 pixels in height. </div>
will be displayed as:
This data will have a light blue background, a blue border, its font will be Verdana, and it will be
orange. It will also be positioned inside a container that is 200 pixels in width and 200 pixels in
height.
Difference between Classes and ID's
It seems that classes and id's can be used for the same purpose, is there a real
difference between them?
Any styling information that needs to be applied to multiple objects on a page should be done
with a class. Take for example a page with multiple “widgets”:
<div class="widget"></div>
<div class="widget"></div>
<div class="widget"></div>
While you could technically use them for the same purpose, they should be used differently. ID's
are used to specify specific elements on a webpage that will not repeat again, and so ID's should
be used for these elements (such as a container for the main content of a webpage, menus, and
footers). Classes specify that an element is part of a group.
1. <!DOCTYPE html>
2. <html>
3. <head>
4. <style>
5. *{
6. color: green;
7. font-size: 20px;
8. }
9. </style>
10. </head>
11. <body>
12. <h2>This is heading</h2>
13. <p>This style will be applied on every paragraph.</p>
14. <p id="para1">Me too!</p>
15. <p>And me!</p>
16. </body>
17. </html>
Output:
This is heading
Me too!
And me!
Grouping selector is used to minimize the code. Commas are used to separate each selector in grouping.
1. h1 {
2. text-align: center;
3. color: blue;
4. }
5. h2 {
6. text-align: center;
7. color: blue;
8. }
9. p{
10. text-align: center;
11. color: blue;
12. }
As you can see, you need to define CSS properties for all the elements. It can be grouped in following ways:
1. h1,h2,p {
2. text-align: center;
3. color: blue;
4. }
1. <!DOCTYPE html>
2. <html>
3. <head>
4. <style>
5. h1, h2, p {
6. text-align: center;
7. color: blue;
8. }
9. </style>
10. </head>
11. <body>
12. <h1>Hello Trident </h1>
13. <h2>Hello Trident (In smaller font)</h2>
14. <p>This is a paragraph.</p>
15. </body>
16. </html>
• Text Properties
• List Properties
• Border Properties
• Font Properties
Text Properties
List Properties
Border Properties
Font Properties
CSS Background
CSS background property is used to define the background effects on element. There are 5 CSS background properties that affects the HTML
elements:
1. background-color
2. background-image
3. background-repeat
4. background-attachment
5. background-position
1) CSS background-color
The background-color property is used to specify the background color of the element.
1. <!DOCTYPE html>
2. <html>
3. <head>
4. <style>
5. h2,p{
6. background-color: #b0d4de;
7. }
8. </style>
9. </head>
10. <body>
11. <h2>My first CSS page.</h2>
12. <p>Hello Trident. This is an example of CSS background-color.</p>
13. </body>
14. </html>
Output:
2) CSS background-image
The background-image property is used to set an image as a background of an element. By default the image covers the entire element. You
can set the background image for a page like this.
1. <!DOCTYPE html>
2. <html>
3. <head>
4. <style>
5. body {
6. background-image: url("paper1.gif");
7. margin-left:100px;
8. }
9. </style>
10. </head>
11. <body>
12. <h1>Hello TRIDENT.ac.in</h1>
13. </body>
14. </html>
Note: The background image should be chosen according to text color. The bad combination of text and background image may be a cause
of poor designed and not readable webpage.
3) CSS background-repeat
By default, the background-image property repeats the background image horizontally and vertically. Some images are repeated only
horizontally or vertically.
1. <!DOCTYPE html>
2. <html>
3. <head>
4. <style>
5. body {
6. background-image: url("gradient_bg.png");
7. background-repeat: repeat-x;
8. }
9. </style>
10. </head>
11. <body>
12. <h1>Hello TRIDENT</h1>
13. </body>
14. </html>
background-repeat: repeat-y;
1. <!DOCTYPE html>
2. <html>
3. <head>
4. <style>
5. body {
6. background-image: url("gradient_bg.png");
7. background-repeat: repeat-y;
8. }
9. </style>
10. </head>
11. <body>
12. <h1>Hello Trident</h1>
13. </body>
14. </html>
4) CSS background-attachment
The background-attachment property is used to specify if the background image is fixed or scroll with the rest of the page in browser window.
If you set fixed the background image then the image will not move during scrolling in the browser. Lets take an example with fixed
background image.
1. center
2. top
3. bottom
4. left
5. right
CSS Border
The CSS border is a shorthand property used to set the border on an element.
The CSS border properties are use to specify the style, color and size of the border of an element. The CSS border properties are given below
o border-style
o border-color
o border-width
o border-radius
1) CSS border-style
The Border style property is used to specify the border type which you want to display on the web page.
There are some border style values which are used with border-style property to define a border.
Value Description
1. <!DOCTYPE html>
2. <html>
3. <head>
4. <style>
5. p.none {border-style: none;}
6. p.dotted {border-style: dotted;}
7. p.dashed {border-style: dashed;}
8. p.solid {border-style: solid;}
9. p.double {border-style: double;}
10. p.groove {border-style: groove;}
11. p.ridge {border-style: ridge;}
12. p.inset {border-style: inset;}
13. p.outset {border-style: outset;}
14. p.hidden {border-style: hidden;}
15. </style>
16. </head>
17. <body>
18. <p class="none">No border.</p>
19. <p class="dotted">A dotted border.</p>
20. <p class="dashed">A dashed border.</p>
21. <p class="solid">A solid border.</p>
22. <p class="double">A double border.</p>
23. <p class="groove">A groove border.</p>
24. <p class="ridge">A ridge border.</p>
25. <p class="inset">An inset border.</p>
26. <p class="outset">An outset border.</p>
27. <p class="hidden">A hidden border.</p>
28. </body>
29. </html>
Output:
No border.
A dotted border.
A dashed border.
A solid border.
A double border.
A groove border.
A ridge border.
17.
CSS Fonts: The CSS color property defines the text color to be used.
The CSS font-family property defines the font to be used.
The CSS font-size property defines the text size to be used.
<html>
<head>
<style>
h1 {
color: blue;
font-family: verdana;
font-size: 300%;
}
p {
color: red;
font-family: courier;
font-size: 160%;
}
</style>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
CSS Border: The CSS border property defines a border around an HTML element.
CSS Padding: The CSS padding property defines a padding (space) between the text and the
border.
CSS Margin: The CSS margin property defines a margin (space) outside the border.
DIV tag with Stylesheet
<!doctype html>
<html>
<body>
<h4>Example Div with style</h4>
<p>The CSS properties that define the graphics of each DIV are specified in the
<b>style</b> attribute (length in pixels, background and border).</p>
The CSS properties that define the graphics of each DIV are specified in the style attribute (length in
pixels, background and border).
Nume:
E-mail:
Send
Another DIV
• Line 1
• Line 2
• Line 3
position: sticky;
An element with position: sticky; is positioned based on the user's scroll position.
A sticky element toggles between relative and fixed, depending on the scroll position.
Note: Internet Explorer does not support sticky positioning.
<!DOCTYPE html>
<html>
<head>
<style>
div.sticky {
position: sticky;
top: 0;
padding: 5px;
background-color: #cae8ca;
border: 2px solid #4CAF50;
}
</style>
</head>
<body>
<p>Try to <b>scroll</b> inside this frame to understand how sticky positioning
works.</p>
<div class="sticky">I am sticky!</div>
<div style="padding-bottom:2000px">
<p>In this example, the sticky element sticks to the top of the page (top: 0), when you
reach its scroll position.</p>
<p>Scroll back up to remove the stickyness.</p>
<p>Some text to enable scrolling.. Lorem ipsum dolor sit amet, illum definitiones no
quo, maluisset concludaturque et eum, altera fabulas ut quo. Atqui causae gloriatur ius te,
id agam omnis evertitur eum. Affert laboramus repudiandae nec et. Inciderint efficiantur
his ad. Eum no molestiae voluptatibus.</p>
<p>Some text to enable scrolling.. Lorem ipsum dolor sit amet, illum definitiones no
quo, maluisset concludaturque et eum, altera fabulas ut quo. Atqui causae gloriatur ius te,
id agam omnis evertitur eum. Affert laboramus repudiandae nec et. Inciderint efficiantur
his ad. Eum no molestiae voluptatibus.</p>
</div>
</body>
</html>
position: static
position: relative
position: absolute
Take an example
To start with, create a parent container with 4 boxes side by side.
index.html
<div class=”parent”>
<div class=”box” id=”one”>One</div>
<div class=”box” id=”two”>Two</div>
<div class=”box” id=”three”>Three</div>
<div class=”box” id=”four”>Four</div>
</div>
style.css
.parent {
border: 2px black dotted;
display: inline-block;
}.box {
display: inline-block;
background: red;
width: 100px;
height: 100px;
}#two {
background: green;
}
What happens when we want to move the GreenBox but do not want
to affect the layout around it?
This is where position relative comes in. Move the green box relative to its
current position to 20px from the left and top without changing the layout
around it. Thus, leaving a gap for the green box where it would have been
had it not been position.
#two {
top: 20px;
left: 20px;
background: green;
position: relative;
}
In a nutshell …
position: relative places an element relative to its current position without
changing the layout around it, whereas position: absolute places an element
relative to its parent’s position and changing the layout around it.
s
<body>
<div style = "background-color:red;
width:300px;
height:100px;
position:absolute;
top:10px;
left:20px;
z-index:3">
</div>
JavaScript is a client side technology, it is mainly used for gives client side validation, but it have lot of
features which are given below;
Inheritance does not support in JavaScript, so it is called object based oriented language.
→ JavaScript was developed by Netscape (company name) & initially called live script.
Later Microsoft developed & adds some features live script then it is called “Jscript”.
→JavaScript made its first appearance in Netscape 2.0 in 1995 with the
name LiveScript.
→ Java script is mainly useful to improve designs of WebPages, validate form data at
client side, detects (find) visitor‘s browsers, create and use to cookies, and much more.
• Syntax and features uses the least hardware and software resources possible.
• Use very less memory to execute.
• Easily portable/Less size.
→JavaScript is not a compiled language
→ Java script is also called interpreted language , because script code can be executed
→ Most of the javascript control statements syntax is same as syntax of control statements
in C language.
→ An important part of JavaScript is the ability to create new functions within scripts.
Advantages of JavaScript
• More interactive websites . This includes buttons, but also hover-interactivity, menu functionality,
animation.
• Speed, as the language is executed on the user’s device instead of the website’s server. This
minimizes server requests, accelerating the user’s experience.
• Reduced server load, as once again the user’s device does most of the heavy lifting, conserving both
bandwidth and load.
• Popularity: Nearly every mainstream browser and major online retailer supports JavaScript. Browsers
include Chrome, Firefox, Safari, Edge, Internet Explorer, and many others. Online retailers include
Amazon, PayPal, Google, and numerous others.
• Code is relatively easy to learn, write, and debug. Syntax is simple and flexible.
• Interoperability with other programming languages and scripts, and JavaScript can be inserted into any
page regardless of the file extension
Creating a java script: - html script tag is used to script code inside the html page.
<script> </script>
1) Language attribute: -
<script language=JavaScript>
2) Type attribute: -
In the above example, we have displayed the dynamic content using JavaScript. Let’s see the simple example of
JavaScript that displays alert dialog box.
<script type="text/javascript">
alert("Hello TRIDENT");
</script>
2) JavaScript Example : code between the head tag
1. <html>
2. <head>
3. <script type="text/javascript">
4. alert("Hello TRIDENT ");
5.
6. </script>
7. </head>
8. <body>
9. <script type="text/javascript">
10. alert("Hello TRIDENT ");
11. </script>
12.
13. </body>
14. </html>
It provides code re usability because single JavaScript file can be used in several html pages.
message.js
1. function msg(){
2. alert("Hello TRIDENT");
3. }
index.html
1. <html>
2. <head>
3. <script type="text/javascript" src="message.js"></script>
4. </head>
5. <body>
6. <p>Welcome to JavaScript</p>
7. <form>
8. <input type="button" value="click" onclick="msg()"/>
9. </form>
10. </body>
11. </html>
Program: -
<html>
<head>
<script language="JavaScript">
document.write("hi my name is Kalpana")
</script>
</head>
<body text="red">
<marquee>
<script language="JavaScript">
document.write("hi my name is Sunil Kumar Reddy")
</script> </marquee>
</body>
</html>
O/P: - hi my name is Kalpana
JavaScript Variable
Declaring variable: - variable is a memory location where data can be stored. In java script variables
with any type of data are declared by using the keyword var. All keywords are small letters only.
var a; a=20;
var str; str= “Sunil”;
var c; c=‟a‟;
var d; d=30.7;
But the keyword is not mandatory when declare of the variable.
→ During the script, we can change value of variable as well as type of value of variable.
Ex: -
a=20;
a=30.7;
JavaScript syntax rules: - JavaScript is case sensitive language. In this upper case lower case letters
are differentiated (not same).
Ex: - a=20;
A=20;
The variable name “a‟ is different from the variable named “A‟.
Ex: - myf( ) // correct
myF( ) // incorrect
→ ; is optional in general JavaScript.
Ex: - a=20 // valid
b=30 // valid
A=10; b=40; // valid
var x=5;
● Observe that no type is specified, this is found in run-time and can change.
x = 'abc'; // no problem
There are some rules while declaring a JavaScript variable (also known as identifiers).
2. After first letter we can use digits (0 to 9), for example value1.
3. JavaScript variables are case sensitive, for example x and X are different variables.
1. var 123=30;
2. var *aa=320;
1. <script>
2. var x = 10;
3. var y = 20;
4. var z=x+y;
5. document.write(z);
6. </script>
There are two types of variables in JavaScript : local variable and global variable.
1. <script>
2. function abc(){
3. var x=10;//local variable
4. }
5. </script>
Or,
1. <script>
2. If(10<13){
3. var y=20;//JavaScript local variable
4. }
5. </script>
1. <script>
2. var value=50;//global variable
3. function a(){
4. alert(value);
5. }
6. function b(){
7. alert(value);
8. }
9. </script>
Declaring JavaScript global variable within function
To declare JavaScript global variables inside function, you need to use window object. For example:
1. window.value=90;
Now it can be declared inside any function and can be accessed from any function. For example:
1. function m(){
2. window.value=100;//declaring global variable by window object
3. }
4. function n(){
5. alert(window.value);//accessing global variable from other function
6. }
1. var value=50;
2. function a(){
3. alert(window.value);//accessing global variable
4. }
1. var a;
2. var b = "Hello World!"
3. alert(a) // Output: undefined
4. alert(b) // Output: Hello World!
Example
var a = null;
b = null;
Function
The simplest way to create an array is by specifying the array elements as a comma-separated list enclosed by square
brackets, as shown in the example below:
arr.length == 3
arr[2] == 'c'
Example
Example
<script>
function createGreeting(name){
return "Hello, " + name;
}
</script>
Objects in js are
● Again the . (dot) operator is used to access methods/properties
var myobj = { }; // empty object
alert(obj2.key2 == 15); //true
obj2.key3 = 'hello'; //OK to add fields!
alert(obj2.key2);
● Object/Array variables are references (Java-like?)
● Arrays are objects! (verify with typeof)
Example:
var car = {type:"Fiat", model:"500", color:"white"};
Example
var person = {
firstName: "John",
lastName: "Doe",
age: 50,
eyeColor: "blue"
};
1. Arithmetic Operators
2. Comparison Operators
3. Logical Operators
4. Assignment Operators
5. Conditional Operators
Arithmetic Operators
Arithmetic operators are used to perform mathematical operations between numeric operands.
Operator Description
+ Adds two numeric operands.
- Subtract right operand from left operand
* Multiply two numeric operands.
Operator Description
/ Divide left operand by right operand.
% Modulus operator. Returns remainder of two operands.
++ Increment operator. Increase operand value by one.
-- Decrement operator. Decrease value by one.
The following example demonstrates how arithmetic operators perform different tasks on operands.
x + y; //returns 15
y - x; //returns 5
x * y; //returns 50
y / x; //returns 2
x % 2; //returns 1
x++; //returns 6
x--; //returns 4
+ operator performs concatenation operation when one of the operands is of string type.
The following example shows how + operator performs operation on operands of different data types.
Example: + operator
var a = 5, b = "Hello ", c = "World!", d = 10;
a + b; // "5Hello "
b + c; // "Hello World!"
a + d; // 15
Comparison Operators
JavaScript language includes operators that compare two operands and return Boolean value true or
false.
Operators Description
== Compares the equality of two operands without considering type.
=== Compares equality of two operands with type.
!= Compares inequality of two operands.
> Checks whether left side value is greater than right side value. If yes then returns true otherwise false.
< Checks whether left operand is less than right operand. If yes then returns true otherwise false.
>= Checks whether left operand is greater than or equal to right operand. If yes then returns true otherwise false.
<= Checks whether left operand is less than or equal to right operand. If yes then returns true otherwise false.
The following example demonstrates how comparison operators perform different tasks.
a == c; // returns true
a == x; // returns true
a != b; // returns true
Logical Operators
Logical operators are used to combine two or more conditions. JavaScript includes following logical
operators.
Operator Description
&& && is known as AND operator. It checks whether two operands are non-zero (0, false, undefined, null or "" are
considered as zero), if yes then returns 1 otherwise 0.
|| || is known as OR operator. It checks whether any one of the two operands is non-zero (0, false, undefined, null or
"" is considered as zero).
! ! is known as NOT operator. It reverses the boolean result of the operand (or condition)
Example: Logical Operators
var a = 5, b = 10;
Assignment Operators
JavaScript includes assignment operators to assign values to variables with less key strokes.
Assignment
operators Description
= Assigns right operand value to left operand.
+= Sums up left and right operand values and assign the result to the left
operand.
-= Subtract right operand value from left operand value and assign the result to
the left operand.
*= Multiply left and right operand values and assign the result to the left operand.
/= Divide left operand value by right operand value and assign the result to the
left operand.
%= Get the modulus of left operand divide by right operand and assign resulted
modulus to the left operand.
Example: Assignment operators
var x = 5, y = 10, z = 15;
x = y; //x would be 10
x += 1; //x would be 6
x -= 1; //x would be 4
x *= 5; //x would be 25
x /= 5; //x would be 1
x %= 2; //x would be 1
Ternary Operator
JavaScript includes special operator called ternary operator :? that assigns a value to a variable based
on some condition. This is like short form of if-else condition.
Syntax:
<condition> ? <value1> : <value2>;
Example
var txt1 = "John";
var txt2 = "Doe";
var txt3 = txt1 + " " + txt2;
Example
var txt1 = "What a very ";
txt1 += "nice day";
Example
var x = 5 + 5;
var y = "5" + 5;
var z = "Hello" + 5;
10
55
Hello5