JEE Main
- Home
- Exams
- JEE Main
Reach Us 24x7: +91 - 8800 1234 92
Downloads
Download all what you need for your JEE Main prepration - Be it
1. Past Year Papers
2. Sample Papers
3. Study Material
4. Admission Brochure
5. Ebooks & More...
Click Here To Visit Download Page
Useful JEE Main Links You Should Not Miss:
JEE Details You Should Not Miss:
JEE Coaching Centers:
JEE Main & Advance Preparation Resources:
JEE Physics | JEE Chemistry | JEE Mathematics |
---|---|---|
Mathematics In Physics | Atom & Molecules | Relations |
Unit, Dimension & Measurement | Atomic Structure | Sets Theory |
Motion In One Dimension | Chemical Bonding | Continuity |
Circular Motion | Solutions | Differentiability |
Projectile Motion | Solid State | Functions |
Newtons Law of Motion | Gaseous State | Limits |
Friction | Nuclear Chemistry | Differentiation |
Work, Energy & Power | Chemical Equilibrium | Application of Derivative |
Rotational Motion | Thermodynamics & Thermochemistry | Difinite Integrals |
Gravitation | Chemical Kinetics | Indefinite Integrals |
Properties of Bulk Matter | Redox Reaction | Area Under The Curve |
Surface Tension | Electrochemistry | Differential Equations |
Simple Harmonic Motion | Surface Chemistry | Indices & Surds |
Wave Motion | Purification | Logarithm |
Transmission of Heat | Organic Chemistry |
function isNumberFF(evt) {
evt = (evt) ? evt : window.event;
var charCode = (evt.which) ? evt.which : evt.keyCode;
if (charCode > 31 && (charCode < 48 || charCode > 57)) {
alert("Please enter only Numbers.");
return false;
}
return true;
}
function fovalidateForm(){
var name=/^[a-zA-Z\s]+$/;
if (!(document.eformFF.name.value))
{
alert('Please Enter Your Name');
document.eformFF.name.focus();
return false;
}
var phoneNo = document.getElementById('contactff');
if(phoneNo.value == "" || phoneNo.value == null || phoneNo.value == "9999999999" || phoneNo.value == "8888888888" || phoneNo.value == "7777777777" || phoneNo.value == "6666666666" || phoneNo.value == "5555555555" || phoneNo.value == "4444444444" || phoneNo.value == "3333333333" || phoneNo.value == "2222222222" || phoneNo.value == "1111111111") {
alert("Please enter correct your Mobile No.");
document.eformFF.contact.focus();
return false;
}
if(phoneNo.value.length < 10){
alert("Mobile No. is not valid.");
document.eformFF.contact.focus();
return false;
}
var emid = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/;
if (!(emid.test(document.eformFF.email.value)))
{
alert ("Please Enter Correct Mail Id (Like :name@gmail.com)");
document.eformFF.email.focus();
return false;
}
if (!(document.eformFF.class.value))
{
alert('Please Select Class');
document.eformFF.class.focus();
return false;
}
return( true );
}
|