javascript - JWalshe86/career GitHub Wiki

Change job displays red when response is not proceeding

static/js/main.js linked to jobs searched page image

Jquery works when inputted directly to job_searches.html $(".card.h-100.border-0").css( "background-color", "red" ); image

Jquery renders in main.js using this image

$(document).ready(function (){
    $('h1').click(function(){
        $('h1').text(`It's not magic, it's jQuery`).css('color', 'Green')
    })
})

using $(document).ready the jquery in the main.js works correctly now image