[jQuery] Case sensitive XML tags
Is it possible to create case sensitive XML tags?
jQuery('<xml/>').append(jQuery('<Login/>').attr({userName: 'u',
passWord: 'p'})).html()
should produce:
<Login passWord="p" userName="u"></Login>
but not:
<login password="p" username="u"></login>
Cheers,
Dalibor Nasevic
http://dalibornasevic.com/