AnanthaKN / jquery-in-place-editor

Automatically exported from code.google.com/p/jquery-in-place-editor
Other
0 stars 0 forks source link

IE 8 sends no data back to a script #81

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Edit value of a <p> field and send it back to an php script.

What version of the product are you using? On what operating system?
1. Version jquery 1.4.4
2. Version jquery-in-place-editor 2.2.0
3. Version IE 8 64Bit & 32Bit
4. Windows 7/Server/XP

IE 8 shows an error instead
Error is "Invalid property value jquery.min.js.gz row 156 char 295" 
The IE debugger says the error is in this element:
 a.elem.style[a.prop]=a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit;

Even the compatibility mode doesn't change the problem. No Data is send back to 
the php page.

In firefox the same page works fine and sends back data to the php page.

Original issue reported on code.google.com by thoma...@gmail.com on 14 Jan 2011 at 2:11

GoogleCodeExporter commented 8 years ago
Forgot to paste the script and code:

Script part:
$("#desc").editInPlace({
   url: './update_desc.php',
   default_text: '<div style="color:brown;"><i>Kein Text vorhanden.<br>Hier klicken um Text hinzuzufügen.</i></div>',
   field_type: "textarea",
   textarea_rows: "10",
   textarea_cols: "35",
   params: "manr=<?php echo $_GET[nr];?>&db=<?php echo $db;?>",
   show_buttons: true
});

---

In the html:
<p id="desc">Some Text to edit</p>

---
Also chrome works fine too.

Original comment by thoma...@gmail.com on 14 Jan 2011 at 2:16

GoogleCodeExporter commented 8 years ago
check out this : 
http://code.google.com/p/jquery-in-place-editor/issues/detail?id=77

Original comment by gau...@techtinium.com on 21 Jun 2011 at 5:08