Advertisement

09.17.2008 at 10:57AM PDT, ID: 23739674
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.2

Javascript stil works after disabling it on IE7

Asked by dkim18 in JavaScript

Hi,

After disabling Javascript, it still works on IE7. I followed this instruction in order to disable Javascript on IE.

   1.   From the Tools menu, select Internet Options.
   2. Select the Security tab.
   3. Click the Custom Level button.
   4. Scroll to the Scripting section.
   5. Under Active Scripting, select the Enable or the Disable option.
   6. Click OK.
   7. Click the Yes button.
   8. Click OK.
   9. On your toolbar, click the Refresh button.

So, if I implement similar javascript function, are there any ways that users might change their web browser setting so that javascript won't work?

thanks,Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
<HTML>
<HEAD>
    <TITLE>Entry Form</TITLE>
<SCRIPT>
<!--
function ChangeDisplay(bdisp)
{
 var type=(bdisp)?"block":"none";
 document.getElementById("Field3").style.display = type
 document.getElementById("Field4").style.display = type
 document.getElementById("Field5").style.display = type
}
//-->
</SCRIPT>
 
</HEAD>
 
<BODY bgcolor="ffffff">
 
<table width="750">
    <tr>
         <td><H1 align="center">Travel Arrangements form</H1>
<FORM method="post" name="OutDuty">
 
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="left">
    <!--- Field 1 --->
    <tr>
         <td width="250" valign="top">Staff Number:</td>
         <td width="550"><input type="Text" name="StaffNum" size="12" maxlength="10"></td>
     </tr>
     <tr><td colspan="2">&nbsp;</td></tr>    
     
    <!--- Field 2 --->
    <tr>          
         <td width="250" valign="top">Are you attending a course?</td>
         <td width="550"><input onclick="ChangeDisplay(1)" type="Radio" name="IsCourse" value="1">&nbsp;yes&nbsp;&nbsp;&nbsp;
                             <input onclick="ChangeDisplay(0)" type="Radio" name="IsCourse" value="0" checked>&nbsp;no</td>
    </tr>
    <tr><td colspan="2">&nbsp;</td></tr>
   
<!--- The fields marked 3 & 4 shouldn't appear if 'NO' was selected in field 2 --->
 
    <!--- Field 3: --->
    <tr id="Field3" style="display:none">
         <td width="250" valign="top">Name of course:</td>
         <td width="550"><input type="text" name="CourseName"></td>
    </tr>
    <tr><td colspan="2">&nbsp;</td></tr>
 
    <!--- Field 4 --->
    <tr id="Field4" style="display:none">
         <td width="250" valign="top">Learning outcome:</td>
         <td width="550"><textarea name="LearnOutcome" rows="5" cols="39"></textarea></td>
    </tr>
    <tr><td colspan="2">&nbsp;</td></tr>
 
    <!--- Field 5 --->
    <tr id="Field5" style="display:none">
         <td width="250" valign="top">Type of travel:</td>
         <td width="550">
<input type="checkbox" name="TravelType" value="Train">&nbsp;train&nbsp;&nbsp;&nbsp;
<input type="checkbox" name="TravelType" value="Tube">&nbsp;tube&nbsp;&nbsp;&nbsp;
<input type="checkbox" name="TravelType" value="Flight">&nbsp;flight&nbsp;&nbsp;&nbsp;
<input type="checkbox" name="TravelType" value="Private car">&nbsp;private car
         </td>
    </tr>
    <tr><td colspan="2">&nbsp;</td></tr>    
    <tr>
         <td colspan="2" align="center"><INPUT type="submit" value="Submit">&nbsp;&nbsp;&nbsp;<input type="reset" value="Reset"></td>
    </tr>
 
</TABLE>
</FORM>
         </td>
    </tr>
</table>
 
</BODY>
</HTML>
[+][-]09.17.2008 at 11:11AM PDT, ID: 22501808

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.17.2008 at 11:17AM PDT, ID: 22501882

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.17.2008 at 11:19AM PDT, ID: 22501916

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: JavaScript
Sign Up Now!
Solution Provided By: MMDeveloper
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628