I have the following function:
$(document).ready(function(){
arrayAmount[0]='29.90';
}
I need instead of specifying the value directly there (29.90), so that it gets the value of a URL.
Ex:
arrayAmount[0]=GET:http://domain_here.com?id=1;
How can I do this?
I need something that is only one command / line, because it will be several array
..