Posts

Showing posts with the label internet-explorer-11

How to fix IE11 div absolute positioning not filling td when other cell height is specified? (works on chrome na ff)

Image
Clash Royale CLAN TAG #URR8PPP How to fix IE11 div absolute positioning not filling td when other cell height is specified? (works on chrome na ff) I have a table with fixed width columns and a cell with fixed height. Cell without specified height should have height equal to fixed height cell and its content should have hidden overflow. table td { border: 1px solid black; width: 100px; position: relative; } table td > .cell.row-height-indicator { position: static; height: 30px; } .cell { padding: 10px; position: absolute; top: 0; left:0; right: 0; bottom: 0; overflow: hidden; background-color: lightblue; } <table> <tr> <td><div class="cell">kljdslkdjsl</div></td> <td><div class="cell">kljdslkdjsl</div></td> <td><div class="cell">kljdslkdjsl</div></td> <td><div class="cell">kljdslkdjsl</div></t...

pbm with posting ajax data in php7

Image
Clash Royale CLAN TAG #URR8PPP pbm with posting ajax data in php7 I have a problem with the POST data on a page, it works under chrome and mozilla but on IE11 exceptionally it does not work. the fact is simple, a form in html poster with an ajax function with jquery1.6 does not work if we do a var_dump () php side of global variable $ _POST send via ajax the variable is null (the version of php is php7. 1.18), yet on a php5.3 server (old server it works properly). Blockquote <?php echo "<pre>"; print_r($_POST); echo "</pre>"; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr-FR" lang="fr-FR"> <head> <script src="https://code.jquery.com/jquery-1.6.2.js" ></script> </head> <body> <form id="form_ses10_rech" na...