Side navigation
#5891 closed bug (fixed)
Opened January 21, 2010 08:15PM UTC
Closed January 22, 2010 03:41AM UTC
Documentation error: jQuery.getScript()
Reported by: | joemaller | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.4.1 |
Component: | unfiled | Version: | 1.4 |
Keywords: | documentation | Cc: | |
Blocked by: | Blocking: |
Description
The jQuery.getScript documentation pagedescribes the full jQuery.ajax() function as:
$.ajax({
url: url,
type: 'script',
success: success
});
'type' is incorrect, it should be 'dataType':
$.ajax({
url: url,
dataType: 'script',
success: success
});
Attachments (0)
Change History (1)
Changed January 22, 2010 03:41AM UTC by comment:1
resolution: | → fixed |
---|---|
status: | new → closed |
Fixed, thanks! Feel free to comment on the api page itself if you see any other problems.