Closed
Bug 150989
Opened 23 years ago
Closed 21 years ago
budgetinsurance.com - dropdowns don't become visible
Categories
(Tech Evangelism Graveyard :: English Other, defect, P2)
Tracking
(Not tracked)
RESOLVED
WORKSFORME
People
(Reporter: iannbugzilla, Unassigned)
References
()
Details
(Whiteboard: [havefix][havecontact])
Attachments
(1 file)
|
4.07 KB,
application/x-javascript
|
Details |
Using BuildID 2002060808 on Win2KSP2
1. Go to above URL and select Online Quote Request
2. Click confirm on page that comes up
3. Wait for personal details page to come up
4. Select Employed in Employment Status dropdown
Actual results
Employment status changes to employed
Expected results
Employment status changes to employed and dropdowns appears from Occuption and
Employers Business
Works fine under IE and no errors appear in Javascript console
Comment 1•23 years ago
|
||
Confirming with build 2002070310 winXP
Comment 2•23 years ago
|
||
I sent a message on their contact form.
Status: UNCONFIRMED → NEW
Ever confirmed: true
OS: Windows 2000 → All
URL has changed but still the same problem. Updating URL
URL: http://www.budgetinsurance.com/car_in... → http://www.budgetinsurance.com/cari_0...
Selecting correct component. Managed to get through to someone on the phone,
who's logged a call with their helpdesk.
Assignee: momoi → nitot
Component: English: Non-US → Europe: West
QA Contact: jeesun → brantgurganus2001
The problem lies in quote.js, which has no option for document.getElementByID in
the following functions:
function DispDiv(ID) {
if (document.layers && document.layers[ID]) document.layers[ID].visibility='show';
if (document.all && document.all[ID]) {document.all[ID].style.display = "";
document.all[ID].style.visibility = "visible";}
}
function HideDiv(ID) {
if (document.layers && document.layers[ID]) document.layers[ID].visibility='hide';
if (document.all && document.all[ID]) {document.all[ID].style.display = "none";
document.all[ID].style.visibility = "hidden";}
}
function DelDiv(ID) {
if (document.all && document.all[ID]) {
document.all[ID].innerHTML='';
document.all[ID].outerHTML='';
return;
}
if (document.layers && document.layers[ID]){
document.layers[ID].visibility='hide';
delete document.layers[ID];
return;
}
}
function BlockDisp(ID) {
if (document.layers && document.layers[ID]) document.layers[ID].diaplay='block';
if (document.all && document.all[ID]) {document.all[ID].style.display = "";
document.all[ID].style.display = "block";}
}
function BlockHide(ID) {
if (document.layers && document.layers[ID]) document.layers[ID].display='none';
if (document.all && document.all[ID]) {document.all[ID].style.display = "none";
document.all[ID].style.visibility = "hidden";}
}
Comment 6•23 years ago
|
||
this should replace http://194.216.175.247/js/quote.js
Comment 7•23 years ago
|
||
using this fixed quote.js and a good mime type for .js files (like
application/x-javascript) should be enough to fix it.
Priority: -- → P2
Whiteboard: [havefix][havecontact]
Comment 9•22 years ago
|
||
en other default owner
Assignee: nitot → english-other
QA Contact: brantgurganus2001 → english-other
Updated•11 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
•