In my JavaScript file, I have an appended list that looks like this:
$("#ultag").append($("<li onclick=\"next(this.id);\" id=\"litag\"><div id=\"litagdiv\"><div id=\"imgdiv\"><img id=\"listimg\" alt=\"picture\" src="+file_image+"></div><img id=\"help_picture\" src=\"images/call_icon_list_black.png\"><div id=\"datadiv\"><div id=\"distance\">"+final_distance+" mts"+"</div><div id=\"gulpname\">"+file_name+"</div><br><div id=\"gulpaddress\">"+file_address+"</div><div id=\"time\">Open till "+""+file_time+"</div></div></div></li>"));
I am looking to pass the file_address, file_name, and image to another HTML page.
Any assistance would be greatly appreciated. Thank you.