I have an URL with some parameters.
What is the easiest way to get the url parameter value giving only the end of the parameter string ?
Ex: http://my.domain.com/home?this_is_a_param=5
So, giving to the function :
function returnValueFromURL(url,"param"){
// What I need ...
// return 5;
}
Thanks.