Closed
Bug 349302
Opened 18 years ago
Closed 18 years ago
visual basic script not supported
Categories
(Tech Evangelism Graveyard :: English US, defect)
Tracking
(Not tracked)
People
(Reporter: parmoni, Unassigned)
References
()
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6) Gecko/20060728 Firefox/1.5.0.6
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6) Gecko/20060728 Firefox/1.5.0.6
a simple expand and collapse script done in visual basic does not function properly in FF, but works fine in IE. i am a web designer who prefers FF over IE, and i just discovered that SEVERAL websites i've designed for my clients using the script below, do not expand and collapse, or the feature is rendered useless. here's the script:
<script LANGUAGE="VBScript">
// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
<!--
sub pop (id)
if id.style.display = "" then
id.style.display = "none"
else
id.style.display = ""
end if
end sub
sub MouseOver (id)
id.style.fontweight = "normal"
id.style.color= "#000000"
end sub
sub MouseOut (id)
id.style.fontweight = "normal"
id.style.color="black"
end sub
-->
</script>
Reproducible: Always
Steps to Reproduce:
1.go to http://www.tsites.com/cgi-script/CSMailto/forms/tsiteswebvision.htm
2.click on the checkboxes that are supposed to expand more form fields, but don't
3.try clicking on those checkboxes in IE4+.
Actual Results:
no expansion of html elements appeared
Expected Results:
it should have expanded the hidden html
Comment 1•18 years ago
|
||
While there has been work done to support additional languages apart from JavaScript, I don't think there are any plans to support VBScript. This is really a dupe of bug 41274.
You can do all of the things in this script in a cross-browser fashion using JavaScript.
*** This bug has been marked as a duplicate of 41274 ***
Status: UNCONFIRMED → RESOLVED
Closed: 18 years ago
Resolution: --- → DUPLICATE
Updated•10 years ago
|
Product: Tech Evangelism → Tech Evangelism Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•