jquery - strange behavior in IE..
Posted
by stackoverflow
on Stack Overflow
See other posts from Stack Overflow
or by stackoverflow
Published on 2010-03-22T20:01:08Z
Indexed on
2010/03/22
20:11 UTC
Read the original article
Hit count: 294
jQuery
I have an input field where name='id'
<input type='hidden' name="id" />
While jquery lib works fine in Chrome, it fails in IE. It works when I change from id to idfield - but our server code breaks since it expects the form with element key id.
Is there a work around for this?
PS: I cannot change the server code.
jquery version 1.3.2
using dynamic forms
$(document).ready(function(){
$("#formRow").dynamicForm("#plus3", "#minus3", {limit:100,
createColor:'yellow',removeColor: 'red' });
});
Happens when the Add row button is clicked
© Stack Overflow or respective owner