leogtzr / vecin

Administra tu fracc, departamentos, tu calle o tu conjunto de casas
0 stars 0 forks source link

Fix warning related with redundant jQuery selector #10

Open leogtzr opened 3 months ago

leogtzr commented 3 months ago

This is the suggested code:

    $('#direccionEstado').on('change', function() {
        const estado = $('#direccionEstado').val();
        const pais = $('#direccionPais').val();

        if (estado && pais) {
            fetchCitiesByStateId(estado);
        }
    }).trigger('change');

This is the offending code:

    $('#direccionEstado').on('change', function() {
        const estado = $('#direccionEstado').val();
        const pais = $('#direccionPais').val();

        if (estado && pais) {
            fetchCitiesByStateId(estado);
        }
    }).trigger('change');