#7202 closed bug (fixed)
$(location).attr('href', hrefString) not working in jquery.latest
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | high | Milestone: | 1.5 |
Component: | attributes | Version: | 1.4.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
was using jquery-latest.min.ms in my code.
<script type="text/javascript"
src="http://code.jquery.com/jquery-latest.min.js"></script>
this morning, $(location).attr('href', someHrefString ) was not working for me like it did yesterday. I changed my code to use jquery 1.4.2 from googleapis and the code worked again.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"
type="text/javascript"></script>
Change History (5)
comment:1 Changed 13 years ago by
Component: | unfiled → attributes |
---|---|
Resolution: | → wontfix |
Status: | new → closed |
comment:2 Changed 13 years ago by
Milestone: | 1.4.4 |
---|---|
Resolution: | wontfix |
Status: | closed → reopened |
comment:3 Changed 13 years ago by
Milestone: | → 1.4.5 |
---|---|
Priority: | undecided → high |
Resolution: | → fixed |
Status: | reopened → closed |
Welp, we ended up fixing this anyway: https://github.com/jquery/jquery/pull/92
comment:5 Changed 13 years ago by
Milestone: | 1.4.5 → 1.5 |
---|
Move fixed tickets to appropriate milestone
Note: See
TracTickets for help on using
tickets.
You shouldn't use .attr() on non-DOM elements. You can just do: window.location.href = hrefstring;