Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@shrimp2t
Created June 23, 2017 00:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shrimp2t/0088ae1c3f0c0e03b69a63b26b723842 to your computer and use it in GitHub Desktop.
Save shrimp2t/0088ae1c3f0c0e03b69a63b26b723842 to your computer and use it in GitHub Desktop.
Add params to URL
var addParams = function( url, data )
{
if ( ! $.isEmptyObject(data) )
{
url += ( url.indexOf('?') >= 0 ? '&' : '?' ) + $.param(data);
}
return url;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment