Home »
Articles posted by evirtualguru_ajaygour (Page 1392)
5 Minutes Dictation ( Play Dictation ) The Select Committee has done a very good job, studied the matter thoroughly and improved the Bill so that it/ has become more presentable. The Picture that has now emerged is clearer than it was at an earlier stage. However, / I would like to offer my comments on three or four clauses....
Continue reading »
October 9, 2015 evirtualguru_ajaygourStenography, Vocational7 Comments
Comparing Values One of the things you will find yourself doing in your scripts is comparing the values of variables. For example, you might take one action if a variable has a value less than 10 and a different action when the variable is greater than 10. Table 2.4 provides a list of JavaScript and JScript comparison operators you can use in your scripts. JAVASCRIPT AND JSCRIPT COMPARISON OPERATORS The...
Continue reading »
October 5, 2015 evirtualguru_ajaygourOnline Computer Education
Global Variables in Java Script. A global variable is any variable defined outside of a function. Such a variable is global because any script statement located in the Web page or script file can refer to it. You can create a global variable in several ways, including: Creating the variable by referencing it inside a function without first declaring it using the var keyword. Creating the variable anywhere else in...
Continue reading »
October 5, 2015 evirtualguru_ajaygourOnline Computer EducationNo Comment
Working with Variables I have to go over a few more things relating to variables before we move on. These important aspects of variables include the rules that govern the naming of variables and how to define variable scope. Rules for Variable Names Keep the following rules in mind when creating variables: Variable names can consist only of uppercase and lowercase letters, the underscore character, and the numbers 0 through...
Continue reading »
October 5, 2015 evirtualguru_ajaygourOnline Computer EducationNo Comment
Working with Values JavaScripts and JScripts store information as values. For example, if you were to create a form for your users to fill out, each entry in the form would contain a separate value. Your scripts can store these values in variables and then use the variables throughout your script. The list of the types of values supported by JavaScript and JScript. JAVASCRIPT AND JSCRIPT VALUES Value ...
Continue reading »
October 5, 2015 evirtualguru_ajaygourOnline Computer EducationNo Comment
HTML comments begin with the characters <!– and end with –>. The browser knows not to display anything between these sets of characters. You also know that the HTML <SCRIPT> tag is used to embed JavaScript into HTML pages. Both JavaScript and non-JavaScript browsers know not to display the <SCRIPT> tags. However, non-JavaScript browsers do not know what to make of the statements within the <SCRIPT> tags, so they...
Continue reading »
October 5, 2015 evirtualguru_ajaygourOnline Computer EducationNo Comment
1.Recently WhereHindustan Motor car plant shut down: Uttarpara plant in West Bengal 2.Book My Journey Transforming Into Dreams: Former President APJ Abdul Kalam 3.Highest rural population state as per Census 2011 – Uttar Pradesh 4.Reliance company lady head name- Neeta Ambani 5.Recently banking license issued company name- IDFC 6.Full form CAG-Comptroller and Auditor General 7.Which of the following is not an indirect tax- 10% surcharge on income 8.Which of the...
Continue reading »
September 30, 2015 evirtualguru_ajaygourCurrent Affairs, General KnowledgeNo Comment
JavaScript can also be placed within HTML tags, as shown in the following example. <BODY onLoad=document.write(“Hello World!”)> </BODY> In this example, the JavaScript onLoad=document.write(“Hello World!”) statement has been added to the HTML <BODY> tag. This particular JavaScript statement tells the browser to write the enclosed text when the browser first loads the HTML page. Placing small JavaScript statements inside HTML tags provides an easy way to execute small pieces of...
Continue reading »
September 29, 2015 evirtualguru_ajaygourOnline Computer EducationNo Comment