I make innerHTML to get data and store it in database. When i tried in firefox it is coming proper with quotes(" or ') for attributes. But in IE i am not getting the quotes(" or ') for attributes. Is this a browser issue? Any answer for this.
Thanks
|
I make innerHTML to get data and store it in database. When i tried in firefox it is coming proper with quotes(" or ') for attributes. But in IE i am not getting the quotes(" or ') for attributes. Is this a browser issue? Any answer for this. Thanks |
|||
|
|
Yes, this is a browser issue, in that that's just how IE does it. Note that quotes aren't mandatory for all attributes in HTML, so that doesn't make IE's output invalid. If you want XHTML you'll have to create it yourself by walking the DOM. |
|||||
|
|
Yes. When you use
IE's
...whereas Firefox and Chrome are pretty close to your original. What IE gives you is valid HTML (you're allowed to omit the quotes on attributes that don't have spaces in them, and UPPER CASE tagnames are okay too), but not valid XHTML (if that's important for what you're doing). You can build your own (X)HTML string if you like by traversing the DOM tree yourself, or post-process IE's result. The good news is that now that |
|||||||||||||||
|