#10082 closed enhancement (wontfix)
'style' or 'css' dataType in $.ajax().
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.6.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
If there was a 'style' or 'css' dataType in $.ajax(), it would be simpler to dynamically load CSS stylesheets. It would do something like:
$('head').append($('<link rel="stylesheet" href="' + url + '" type="text/css" media="screen">'));
Change History (2)
comment:1 Changed 11 years ago by
Resolution: | → wontfix |
---|---|
Status: | new → closed |
comment:2 Changed 11 years ago by
Lucky for you, Julian Aubourg has already written this: https://github.com/jaubourg/ajaxHooks
Note: See
TracTickets for help on using
tickets.
The problem with adding more functionality to
$.ajax()
is that people would expect it to be compatible with the dozens of options supported there. That is a tall order.I'd suggest this start as a plugin or
$.ajax
extension outside core and be incorporated once the need is demonstrated and the problems are worked out.Just use the code you've proposed there if it's good for your needs.