#1207 closed enhancement (wontfix)
URL Parameter Function
Reported by: | bgoldman | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.1.4 |
Component: | core | Version: | 1.1.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I think this would be a good addition to jQuery core, because most people use or might want to use URL parameters in their Javascript. This function makes it really easy:
//returns the requested GET parameter from the URL url: function(param) { var regex = '[?&]' + param + '=([^&#]*)'; var results = (new RegExp(regex)).exec(window.location.href); if(results) return results[1]; return ''; }
Change History (1)
comment:1 Changed 15 years ago by
Milestone: | 1.1.3 → 1.1.4 |
---|---|
Resolution: | → wontfix |
Status: | new → closed |
Version: | 1.1.2 → 1.1.3 |
Note: See
TracTickets for help on using
tickets.
We're currently not planning on adding this to core - however this would make for a fantastic plugin :-)