How is the following code useful?
function validate(field)
{
var valid="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
var ok="yes";
var temp;
for(var i=0; i < field.value.length; i++)
{
temp="" + field.value.substring(i,i+1)
if(valid.indexOf(temp)=="-1")
{
ok="no";
break;
}
}
if(ok=="no")
{
alert("error");
field.focus();
}
}
Correct Answer:
It will force a user to enter only character values
Note: This Question is unanswered, help us to find answer for this one
Which of the following event would execute a script once a web page has completely loaded all content?
Correct Answer:
OnLoad
Note: This Question is unanswered, help us to find answer for this one
You defined two styles as follows:
td.right {text-align: right}
td.left {text-align: center}
Which of the following is the right way of calling them in an HTML page?
Correct Answer:
<td class="right">Some Text</td>
Note: This Question is unanswered, help us to find answer for this one
Which of the following is not a JavaScript event?
Correct Answer:
onmousepress
Note: This Question is unanswered, help us to find answer for this one
The form tag is defined as follows:
<form onsubmit="return Validate()" action="http://www.mysite.com/">
How will you implement the Validate() function that will stop the form from being submitted if the name field on the form is not filled?
Correct Answer:
<script type="text/javascript"> function Validate() { if(document.forms[0].name.value == "") return false; else return true; } </script>
Note: This Question is unanswered, help us to find answer for this one
You have a function to change the image with id im…
function changeimg(givenImg)
{
document.getElementById('imageID').src=givenImg
}
How would you make the webpage display "image2.gif", only for the time that the user clicks the image?
Correct Answer:
<img id="imageID" src="image1.gif" width="50" height="60" onmousedown="changeimg(image2.gif)" onmouseup="changeimg(image1.gif)">
Note: This Question is unanswered, help us to find answer for this one
Which of the following enables JavaScript Document Object Model to provide access to the HTTP header?
Correct Answer:
You cannot read the HTTP header information using JavaScript
Note: This Question is unanswered, help us to find answer for this one
You want to disable the selection of text on the webpage. While trying to select some text, the user should see 'not-allowed' cursor. Which of the following helps you implement this by using JavaScript and IE 5+ browser?
Correct Answer:
<body onSelectStart="this.style.cursor='not-allowed'; return false;" onMouseup="this.style.cursor='default'">
Note: This Question is unanswered, help us to find answer for this one
Which of the following helps you highlight some of the running text on a web page?
Correct Answer:
<span style="background-color:yellow">
<span style="background:yellow">
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Is the following statement correct?
The width of an element must be set for making filters work.
Correct Answer:
Yes
Note: This Question is unanswered, help us to find answer for this one
You are designing a web site and need to set the background image for all the web pages. You want a small background image to repeat and fill up the whole background. Which of the following body styles is ideal for this?
Correct Answer:
body { background-image: url(/images/bg.gif);}
Note: This Question is unanswered, help us to find answer for this one
You declared an array as follows:
var arr;
What value would JavaScript assign to an uninitialized element of this array?
Correct Answer:
null
Note: This Question is unanswered, help us to find answer for this one
Which of the following style properties is used to display only a part of an image?
Correct Answer:
clip
Note: This Question is unanswered, help us to find answer for this one
What is the default value for z-index?
Correct Answer:
0
Note: This Question is unanswered, help us to find answer for this one
Consider the three variables:
someText = 'JavaScript1.2';
pattern = /(\w+)(\d)\.(\d)/i;
outCome = pattern.exec(someText);
What does pattern.ignoreCase contain?
Correct Answer:
true
Note: This Question is unanswered, help us to find answer for this one
Which non-standard parameter is required when using the photos.createAlbum method?
Correct Answer:
Name
Note: This Question is unanswered, help us to find answer for this one
You are setting cookies with JavaScript. What happens to cookies.txt data if the file exceeds the maximum size?
Correct Answer:
The file is truncated to the maximum length
Note: This Question is unanswered, help us to find answer for this one
You want to position a heading at 15 pixels from the left of the page and 20 pixels from the top of the page. The
style definition should be:
Correct Answer:
h2.side{ position:absolute; left:15px; top:20px;}
Note: This Question is unanswered, help us to find answer for this one
After clicking on a link, your main browser window spawns a small new window and writes some text on it. When
both the window page sources are viewed, the small window page source seems identical to that of the large
one. Which of the following makes this happen?
Correct Answer:
The function writing to the new window did not close the document stream
Note: This Question is unanswered, help us to find answer for this one
Which of the following code snippets is more efficient and why?
<script language="javascript">
for(i=0;i<document.images.length;i++)
document.images[i].src="blank.gif";
</script>
<script language="javascript">
var theimages = document.images;
for(i=0;i<theimages.length;i++)
theimages[i].src="blank.gif"
</script>
Correct Answer:
The second code is more efficient as it employs object caching
Note: This Question is unanswered, help us to find answer for this one
The width of the h4 is defined as follow:
H4 {width:95%;}
How can you make the heading blur?
Correct Answer:
<h4 style="filter:blur()">Heading </h4>
Note: This Question is unanswered, help us to find answer for this one
How would you randomly choose an element from an array named myStuff if the number of elements changes
dynamically?
Correct Answer:
randomElement = myStuff[Math.floor(Math.random() * myStuff.length)];
Note: This Question is unanswered, help us to find answer for this one
Which of the following is not a JavaScript event?
Correct Answer:
onupdate
Note: This Question is unanswered, help us to find answer for this one
Which of the following helps you create hyperlinks without an underline?
Correct Answer:
a{text-decoration:none}
Note: This Question is unanswered, help us to find answer for this one
Following is a sample CSS style:
1. p
2. (
3. font-family:arial
4. color:black
5. text-align:left
6. );
What are the corrections required in this style?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Which of the following can you use to accept user input?
Correct Answer:
The prompt method
A form field
The confirm method
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements is incorrect with regard to a style sheet?
Correct Answer:
Internal and external style sheets cannot be used together
Note: This Question is unanswered, help us to find answer for this one
You are displaying image thumbnails on a page. Upon clicking a thumbnail, the image is being displayed in its
actual size. You do not want the user to be able to click the thumbnails unless they are completely downloaded.
Which event will you use to prevent the user from clicking on the thumbnails until they are completely
downloaded?
Correct Answer:
OnLoad
Note: This Question is unanswered, help us to find answer for this one
DHTML is a standard defined by the World Wide Web Consortium.
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements is true with regard to setTimeout()?
Correct Answer:
Which of the following statements is true with regard to setTimeout()?
Note: This Question is unanswered, help us to find answer for this one
The width of h3 is defined as follow:
H3 {width:100%;}
How can you make the heading glow?
Correct Answer:
<h3 style="filter:glow()">Heading </h3>
Note: This Question is unanswered, help us to find answer for this one
Which of the following properties of JavaScript is used to store the extra values for DHTML tricks?
Correct Answer:
innerHTML
Note: This Question is unanswered, help us to find answer for this one
You want to shake a link on the mouseover event. If the style position is set to relative and the anchor id is lnk1, which of the following code lines will be useful with a timer?
Correct Answer:
document.getElementById('lnk1').style.left="0"
document.getElementById('lnk1').style.left="2"
Note: This Question is unanswered, help us to find answer for this one
You have defined an image tag as follows:
<img id="ERImage" width="100" height="100" onmouseover="ImageChange()" src="Image1.jpg">
How would you implement ImageChange() function, if the new image to be set for mouseover is Image2.jpg?
Correct Answer:
document.getElementById('ERImage').src="Image2.jpg"
Note: This Question is unanswered, help us to find answer for this one
You are required to create a web page in which hyperlinked sub-headings are displayed. On clicking a link, the contents should get displayed dynamically. Which of the following style attributes would you use for this?
Correct Answer:
visibility:visible;
Note: This Question is unanswered, help us to find answer for this one
An HTML form has 10 checkboxes which are all named "chkItems". Which JavaScript function can be used for checking all the checkboxes together?
Correct Answer:
function CheckAll()
{
for (z = 0; z < document.forms[0].chkItems.length; z++)
{
document.forms[0].chkItems[z].checked=true
}
}
Note: This Question is unanswered, help us to find answer for this one
Sliding menus can be made using DHTML?
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Which of the following will you use for changing the color of a button with id=btn, to green on a mouseover event?
Correct Answer:
document.getElementById('btn').style.color="green"
Note: This Question is unanswered, help us to find answer for this one
You developed a web page using HTML and style sheets. You defined H4 style in the head tag, imported style sheet, as well as inline. Which of the following style definitions is used when the page is rendered in a browser?
Correct Answer:
Inline style definition
Note: This Question is unanswered, help us to find answer for this one
Your website displays a few articles on java programming. If you want to leave '1 cm' space above and below the code blocks, you would use code { margin-top:1cm ; margin-bottom:1cm }.
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Which of the following is used to display an image behind the paragraph text?
Correct Answer:
set negative z-index for the image
Note: This Question is unanswered, help us to find answer for this one
How can you use a timer with a function called rearrange()?
Correct Answer:
tmr=setTimeout("rearrange()",1)
Note: This Question is unanswered, help us to find answer for this one
Which of the following is not considered a part of DHTML?
Correct Answer:
VBScript
Note: This Question is unanswered, help us to find answer for this one
DHTML uses a combination of:
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Which of the following will you use for changing the color of the textbox text with id=txtLocation to blue, on a mouseover event?
Correct Answer:
document.getElementById('txtLocation').style.color="blue"
Note: This Question is unanswered, help us to find answer for this one
A DHTML page contains a table in between some text. You want to shift the table 20 pixels on the right to separate it from text. Which of the following styles would be suitable for the purpose?
Correct Answer:
position:relative;
left:20PX;
position:relative;
right:-20PX;
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
The width of the h4 is defined as follow:
H4 {width:80%;}
How can you make the heading drop shadow?
Correct Answer:
<h4 style="filter:DropShadow()">Heading </h4>
Note: This Question is unanswered, help us to find answer for this one
Which of the following styles will be helpful in keeping an image at a fixed position on the webpage, even if someone scrolls the page?
Correct Answer:
background-attachment:fixed;
Note: This Question is unanswered, help us to find answer for this one
You are formatting your error messages using the following inline style definition:
<span class="error" style="color: red">Error message.</span>
Now you want the error message text to be displayed in blue color. But the problem is that you are not permitted to edit the HTML code, you can only edit the imported style sheet. Which style definition will you use in the imported style sheet to achieve this?
Correct Answer:
span.error{ color: blue !important;}
Note: This Question is unanswered, help us to find answer for this one
Which of the following in-built functions is useful when you want to access a form element using its id?
Correct Answer:
getElementById(id)
Note: This Question is unanswered, help us to find answer for this one
Choose another way to write x ? a = b : a = c
Correct Answer:
None of the above
Note: This Question is unanswered, help us to find answer for this one
Which of the following is an important parameter of the wave filter?
Correct Answer:
Strength
Note: This Question is unanswered, help us to find answer for this one
The anchor tag is defined as follows:
<a href="http://expertrating.com">expertrating</a>
Which of the following styles will increase the spacing between letters on mouseover?
Correct Answer:
a:hover { letter-spacing: 2px;}
Note: This Question is unanswered, help us to find answer for this one
You have embedded the document.write() method to write some text within a pair of <TD></TD> table tags. On loading the file, you get some garbled junk on the page that should contain the text. What makes this happen?
Correct Answer:
The browser does not support JavaScript
Note: This Question is unanswered, help us to find answer for this one
While coding a loop, you come across a condition where you have to ignore the rest of the statements and continue with the beginning of the loop. Which of the following statements would you use?
Correct Answer:
continue
Note: This Question is unanswered, help us to find answer for this one
How would you create a popup window that closes after n seconds?
Correct Answer:
You would use the setTimeout function
Note: This Question is unanswered, help us to find answer for this one
Which of the following is true?
Correct Answer:
If onKeyDown returns false, the key-press event is cancelled
Note: This Question is unanswered, help us to find answer for this one
You want to validate the value in a field as soon as the user moves out of the field by pressing the tab key. Which of the following events would you use?
Correct Answer:
onblur
Note: This Question is unanswered, help us to find answer for this one
For making the text transparent, the mask filter can be used like:
Correct Answer:
mask(color=#ffffff)
Note: This Question is unanswered, help us to find answer for this one
Given below is a window.open function:
window.open(url,name,"attributes")
How will you ensure that different URLs open in the same window?
Correct Answer:
By keeping the second attribute name same
Note: This Question is unanswered, help us to find answer for this one
Which of the following helps you import a style sheet named "ssa.css" in the web page?
Correct Answer:
<link rel="stylesheet" type="text/css" href="ssa.css">
Note: This Question is unanswered, help us to find answer for this one
Which of the following is not a CSS filter?
Correct Answer:
beta
Note: This Question is unanswered, help us to find answer for this one
You have created an object. How can you add a property to the object class?
Correct Answer:
With the prototype property
Note: This Question is unanswered, help us to find answer for this one
Which code will be useful for disabling the right click event in Internet Explorer?
Correct Answer:
event.button == 2
Note: This Question is unanswered, help us to find answer for this one
What is the default value for overflow property?
Correct Answer:
visible
Note: This Question is unanswered, help us to find answer for this one
You have this image definition:
<img id="logo" src="companylogo1.gif" height="12" width="12" >
Which of the following would be helpful for changing the image to "companylogo2.gif" on page load?
Correct Answer:
document.getElementById('logo').src="companylogo2.gif"
Note: This Question is unanswered, help us to find answer for this one
How would you test whether or not a browser window is open?
Correct Answer:
By using the closed property of the window object reference variable
By using the closed property of the window object reference variable
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
You want to move all the paragraphs 30px towards the right relative to their normal position. The style definition should be:
Correct Answer:
p{ position:relative; left:30px;}
Note: This Question is unanswered, help us to find answer for this one
How will you change the color of the paragraph text to blue on placing the mouse over the paragraph, and reset it back when the mouse leaves the paragraph?
Correct Answer:
<p onmouseover="style.color='blue'" onmouseout="style.color='black'"> The text of the paragraph..</p>
Note: This Question is unanswered, help us to find answer for this one
How would you double the image size of an Image on a mouseover event, if the original width and height are 100px and id is logo?
Correct Answer:
document.getElementById('logo').width="200"
document.getElementById('logo').height="200"
document.getElementById('logo').width="200"
document.getElementById('logo').height="200"
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
What is the error in the statement var charConvert = toCharCode('x')?
Correct Answer:
toCharCode() is a bogus method
Note: This Question is unanswered, help us to find answer for this one
Consider the following JavaScript alert:
<script type="text/javascript">
function message()
{
alert("Welcome to E-Business!!!")
}
</script>
You want the user to see the above message upon opening the page, how will you implement this?
Correct Answer:
<body onload="message()">
Note: This Question is unanswered, help us to find answer for this one
Which of the following is not a JavaScript event?
Correct Answer:
onblink
Note: This Question is unanswered, help us to find answer for this one
Consider an HTML form with a checkbox and a text field. When data is entered and the Enter key is pressed, the data seems to be lost before the user can click on the button that calls the processing function. How would you correct this programatically?
Correct Answer:
Add 'return false' to onsubmit="..." in the FORM tag
Note: This Question is unanswered, help us to find answer for this one
Which of the following code snippets is more effective? Why is it so?
<script language="javascript">
for(i=0;i<document.images.length;i++)
document.images[i].src="blank.gif";
</script>
<script language="javascript">
var theimages = document.images;
for(i=0;i<theimages.length;i++)
theimages[i].src="blank.gif"
</script>
Correct Answer:
The second code is more effective as it employs object caching
Note: This Question is unanswered, help us to find answer for this one
What will the following code snippet do?
<form onreset="alert('Please again fill the form')">
Correct Answer:
None of the above
Note: This Question is unanswered, help us to find answer for this one
This is a JavaScript function for changing the color of the text box named "txtName":
function SetColor(col)
{ document.forms[0].txtName.style.background=col }
How will you change the color of the text box txtName to green, only for the time that the user is pressing any key?
Correct Answer:
<input type="text" onkeydown="SetColor('green')" onkeyup="SetColor('white')" name="txtName">
Note: This Question is unanswered, help us to find answer for this one
How would you change the image position from absolute to relative, if the image id is "ERImage"?
Correct Answer:
document.getElementById('ERImage').style.position="relative"
Note: This Question is unanswered, help us to find answer for this one
You want to display an alert that contains a ' (single-quote) character. Which of the following characters would you use to escape the ' character?
Correct Answer:
\
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements with regard to CSS is correct?
Correct Answer:
The display property sets how an element is displayed
Note: This Question is unanswered, help us to find answer for this one
You have two images of buttons, one bright and the other one dull. You want to change the dull image into a bright one. Which of the following attributes would you use with the img tag?
Correct Answer:
onmousedown="this.src='bright.gif'" onmouseup="this.src='dull.gif'"
Note: This Question is unanswered, help us to find answer for this one
You want to delete an element from an options array. How would you do it?
Correct Answer:
Set it to null
Note: This Question is unanswered, help us to find answer for this one
The following statements show two ways of calling a JavaScript function:
i)onclick = "a()"
ii)onclick="javascript:a()"
a() refers to a function written in JavaScript.
Which of the following statements is correct with regard to the above two statements?
Correct Answer:
There is no difference between the two statements
Note: This Question is unanswered, help us to find answer for this one
Which of the options is true for the following style, if h2 and h3 will be positioned on the top of each other?
h2{z-index:1;}
h3{z-index:2;}
Correct Answer:
h3 will be on the top of h2
Note: This Question is unanswered, help us to find answer for this one
Consider the following validate function:
<script type="text/javascript">
function ValidateField()
{
if(document.forms[0].txtId.value =="")
{return false;}
return true;
}
</script>
This function should be called as soon as the user leaves the field. What will you do?
Correct Answer:
<input name=txtId type="text" onblur="return ValidateField()">
Note: This Question is unanswered, help us to find answer for this one
You are developing a website for children. You want to format the borders of big <td> cells (as mentioned below) for some fun game:
Left Border:double
Right Border:dashed
Top Border:dotted
Bottom Border:solid
Which of the following would be the correct style definition?
Correct Answer:
border-style:dotted dashed solid double
Note: This Question is unanswered, help us to find answer for this one
When does the load event of the browser occur?
Correct Answer:
When the browser receives all the page information, including framesets and displays it
Note: This Question is unanswered, help us to find answer for this one
You are developing an application and there is a possibility of certain users using older browser versions. You want to hide the JavaScript code in the browsers that do not support JavaScript. How would you do this?
Correct Answer:
Use the following notation:
<script language="javascript">
<!--
//-->
</script>
Note: This Question is unanswered, help us to find answer for this one
If an image is placed styled with z-index=-1 and a text paragraph is overlapped with it. Which one will come on top?
Correct Answer:
paragraph
Note: This Question is unanswered, help us to find answer for this one
The following code snippet is used in form validation, the validate function is supposed to return a true if all validations are successful and false if the validation fails. However, the data is always submitted even if the validation fails, what could the cause be?
<form name="frmadd" method="post" action="add.asp" onsubmit="validate()">
Correct Answer:
There should be a return statement before the call to the validate function
Note: This Question is unanswered, help us to find answer for this one
What does the code snippet do? <input type='radio' name='r1' value='adio1' onclick='this.checked=false;alert('sorry')'>
Correct Answer:
clip
Note: This Question is unanswered, help us to find answer for this one
You have a button definition as given below:
<input class="a" type="button" value="Calculate">
To load an image "Img2.jpg" as the background of the button on a mouseover event, you can use:
Correct Answer:
event.srcElement.style.backgroundImage="url('Img2.jpg')"
Note: This Question is unanswered, help us to find answer for this one
The anchor tag is defined as follows:
<a href="http://expertrating.com">expertrating</a>
Which of the following styles will make convert this to capital letters on mouseover?
Correct Answer:
a:hover { text-transform:uppercase;}
Note: This Question is unanswered, help us to find answer for this one
How will you display text as a superscript?
Correct Answer:
vertical-align: super
Note: This Question is unanswered, help us to find answer for this one
You do not want the end user to see the JavaScript code embedded in the HTML file when the user views the source of the HTML page. Which of the following helps you achieve this?
Correct Answer:
Use externally linked files which hold the JavaScript code
Note: This Question is unanswered, help us to find answer for this one
Which of the following properties is used to redirect a visitor to another page?
Correct Answer:
window.location.href
Note: This Question is unanswered, help us to find answer for this one
You are collecting the user's details on a webpage form. The id has to be repeated twice on the form, but you want the user to fill it once only. If the name of the first id is id1 and the second (to be auto filled) is id2, which code will you supply to the onkeyup event of id1?
Correct Answer:
document.forms[0].id1.value=document.forms[0].id2.value
Note: This Question is unanswered, help us to find answer for this one
Which of the following helps you make the text color change to green on moving the mouse over the text?
Correct Answer:
a:hover {color: green;}
a:hover {color: green;}
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
<logic>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
document.normalize()
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
red
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Replace Node2 with Node1
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
user defined
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
1
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
align
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
name
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
element.parentNode
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
window.event.cancelBubble
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
onClick
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Canceling an event's bubbling doesn't cancel its default action
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
<a id="myID" href="#" onclick="myFunc(this)" />click</a>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Node is the parent type of Element
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
red
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
a nodeList of child nodes
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
an integer representing the type of the node
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
<div id='flicker'>Flicker</div> <script> function toggle() { setInterval(function() { var elm = document.getElementById('flicker'); if (elm.style.display == 'none&
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
The first argument accepts the function to occur on the event
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
addAttribute()
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
SPAN has ALIGN attribute in it
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
autocomplete=”off”
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
font-size is a CSS property and fontSize is a DOM attribute
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
The function testFunc() will run as soon as the DOM for the document has fully initialized
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
JavaScript, DOM and CSS
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
<link>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
It inserts the new node to the end of the list of children of the node
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
It is treated as server side code in scripting languages
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All three codes will not display the text “Invisible Man”
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Returns null
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
capture = "true" will cause doThis() to be executed when onClick() event is detected at the capture phase
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
It is used for accessing any server side variable into the HTML (in .aspx) page
Note: This Question is unanswered, help us to find answer for this one
DHTML MCQs | Topic-wise