javascript - JWalshe86/career GitHub Wiki
Change job displays red when response is not proceeding
static/js/main.js linked to jobs searched page
Jquery works when inputted directly to job_searches.html
$(".card.h-100.border-0").css( "background-color", "red" );
Jquery renders in main.js using this
$(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