Opened 10 years ago
Closed 10 years ago
#12307 closed bug (invalid)
jQuery replaces entities in href params when converting text to element
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.8.0 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Reproduced on jQuery version 1.8.0 OS Ubuntu (12.04, Linux ervin 3.2.0-29-generic ), Browsers tested: Chromium 18.0.1025.168 (Developer Build 134367 Linux) Ubuntu 12.04 and Firefox 14.0.1.
var text = '<a href="/ra?a=b÷_money=both&d=e">test</a>' $(text).attr('href')
- returns "/ra?a=b÷_money=both&d=e"
- should return:
"/ra?a=b÷_money=both&d=e"
Note: See
TracTickets for help on using
tickets.
It's not jQuery. Use
&
as you should.http://jsfiddle.net/dmethvin/d5Ypd/7/