src jquery code example
Example 1: import jquery google cdn
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
Example 2: how to start using jQuery CDN
<script
src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
crossorigin="anonymous"
></script>
Example 3: this src jqery
<!-- cambiamos el src de la etiqueta <img id="image"> -->
<img id="ver_icono">
<script >
$('#image').attr("src", 'imagen/flores/rosa.png');
</script>