Linuxuser1234 1 Posted October 24, 2022 (edited) How can i display different images from a website when a item from a ComboEdit here is the website https://weather.ral.ucar.edu/upper/ on the the website there is a map and the labels are clickable and i would like the image to be displayed in ImageViewer Edited October 24, 2022 by Linuxuser1234 Share this post Link to post
Lajos Juhász 293 Posted October 24, 2022 You can inspect the source of the webpage. By clicking you execute the javascript: function getImage(clicked) { var enddate = document.getElementById("endDate").value; var endtime = document.getElementById("endTime").value; var duration = document.getElementById("duration").value; var url = "displayUpper.php?img=" + clicked + "&endDate=" + enddate + "&endTime=" + endtime + "&duration=" + duration; window.location.href = url; } Share this post Link to post