Modify ↓
Ticket #12307 (closed bug: invalid)
jQuery replaces entities in href params when converting text to element
| Reported by: | Ervin Weber <errvin@…> | Owned by: | |
|---|---|---|---|
| Priority: | undecided | Milestone: | None |
| Component: | unfiled | Version: | 1.8.0 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
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"
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

It's not jQuery. Use & as you should.
http://jsfiddle.net/dmethvin/d5Ypd/7/