funcion para buscar imagenes medicas en internet

PHOTO EMBED

Sun Nov 27 2022 20:21:30 GMT+0000 (Coordinated Universal Time)

Saved by @modesto59 #html

/* create a function that searches for medical images on the internet */
function searchForMedicalImages(searchTerm) {
  var searchUrl = 'https://www.google.com/search?tbm=isch&q=' + searchTerm;
  window.location.href = searchUrl;
}
content_copyCOPY