Your Ad Here

Search for post

INFORMATION TECHNOLOGY

The Information Technology (IT) - sector has boomed all over the country.With efforts of government to put the India at the forefront of IT revolution ,The IT companies are all set to turn their employees into young millionaires.Areas within the IT- Sector that one could look at are wide and varied-IT enabled services,The Internet Technologies are the next growth sectors within the IT industry.

The IT enabled services are CALL CENTRES- EXECUTIVE CUSTOMER RELATIONS,GEOGRAPHIC INFORMATION SYSTEMS,TELECOM TECHNOLOGY,INTERNET TECHNOLOGIES,NET WORKING,E-COMMERCE,DATA WAREHOUSING.Most of them had choosed their carrier and courses based on these services.




Saturday, August 22, 2009

RBN-INFO-TECH : JAVA SCRIPT - TUTORIALS & SOME TIPS AND TRICKS


The Java and Java-Script are totally different languages in both concept wise and design,The Java is developed by Sun Microsystems,which is a powerful and much more complex programming language which is the same category as C and C++.


This is the starting stage of java-script and you can do it using html


You can find the tutorial at 'W3SCHOOLS' - http://www.w3schools.com/JS/default.asp


In this you can try the example for yourself referring some given examples in the site.


Most commonly used scripts are alert,functions,if-else conditions.


Alert - alert("Alert warnings"); place this in your script part an alert appears on the event you place.


Functions - To maintain the browser from executing an script when the page loads, Its better to put your script into a function.






A function contains the code that will be executed by an event / by a call to the function.It is possible to call a function from anywhere within a page .
The Functions can be defined in both and the section of an document.To make sure that a function is read/loaded by the browser before it is called,It could be better to place functions in the section.
example:
function function_name(var1,var2,...,varX)
{
You codes..............
}


More detailed information on Java-script are available at 'W3SCHOOLS'








RBN-INFO-TECH