Closed Bug 166186 Opened 22 years ago Closed 21 years ago

coliposte.net - bad way of accessing forms via javascript

Categories

(Tech Evangelism Graveyard :: Other, defect, P3)

Tracking

(Not tracked)

RESOLVED FIXED

People

(Reporter: mat, Assigned: tristan)

References

()

Details

(Whiteboard: [havecontact][havefix] [proprietary-js])

coliposte.net is using forms, and to submit those forms you have to click on an
image. the javascript they use for this doesnt work in mozilla (bad sniffing,
bad way of accessing forms).

here is a fixed version of 2 functions involved : 
function doSubmitPro(){ 
  if(document.layers){
    document.layers[0].document.form1.submit();
  }  
  else if(document.form1){
    var f = document.form1;
    f.submit();
  }  
}

function doSubmitPart(){
  if(document.layers){ 
    document.layers[0].document.form2.submit();
  }
  else if(document.form2){
    var f2 = document.form2;
    f2.submit();
  }
}
contact : http://www.laposte.fr/contact/default.htm
Priority: -- → P2
Whiteboard: [havecontact][havefix]
contacted.
Assignee: nitot → bugzillamat
Status: NEW → ASSIGNED
phone contact :

  La Poste
  Service Client
  N° à tarif spécial  : .0 820 80 8000
sent feedback via form above.
no answer, assigning back to tristan.
btw, the functions to fix are in http://www.coliposte.net/sas.html .
Assignee: bugzillamat → nitot
Status: ASSIGNED → NEW
contacted them again :|
Severity: critical → major
Priority: P2 → P3
Hardware: PC → All
Summary: coliposte.net : bad way of accessing forms via javascript → coliposte.net - bad way of accessing forms via javascript
Whiteboard: [havecontact][havefix] → [havecontact][havefix] [proprietary-js]
Fixed.
Thanks to http://totalementcretin.apinc.org/index.php?m=200305#tc67
Status: NEW → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
resolved euro west non-.com url bugs to other
Component: Europe: West → Other
Product: Tech Evangelism → Tech Evangelism Graveyard
You need to log in before you can comment on or make changes to this bug.