ejecutar una funcion js con id html usando jquery

Solutions on MaxInterview for ejecutar una funcion js con id html usando jquery by the best coders in the world

showing results for - "ejecutar una funcion js con id html usando jquery"
Javier
25 Sep 2016
1//etiqueta html
2<label id="termino"></label>
3
4//código para el js
5$('#termino').on('click', function () {
6    console.log('Hola gracias por darme click');
7});
Ibrahim
08 Aug 2017
1// Función externa
2function muestraMensaje() {
3  alert('Gracias por pinchar');
4}
5
6// Asignar la función externa al elemento
7document.getElementById("pinchable").onclick = muestraMensaje;
8
9// Elemento HTML puede ser: input, button, span, a, p, label, div, etc.
10<input id="pinchable" type="button" value="Pinchame y verás" />