I am stumped as to why my query .click() is not working. I am trying to change the href tag on an a element, before it goes to the next page.
here is my jquery
    $('.individualFormSections').click(function() {      
    var formSectionTitle = $(this).siblings('div').text(); // gets section title that was clicked
    console.log(formSectionTitle);
    assetConfigIdForURL = assetConfigIdForURL.replace(/\s+/g,'-');
    woTypeCodeForURL =  woTypeCodeForURL.replace(/\s+/g,'-');
    woMaintTypeCode = woMaintTypeCode.replace(/\s+/g,'-');
    formSectionTitle = formSectionTitle.replace(/\s+/g,'-');
    // Change href dynamically to set url parameters
    $(this).attr("href",'airSystem.html?insp_asset_config_id='+assetConfigIdForURL+'&wo_type_code='+woTypeCodeForURL+'&wo_maint_type_code='+woMaintTypeCode+'&formSection='+formSectionTitle+'&wo_id='+woIdForURL+'');
 });
Here is the html
            <a class="individualFormSections" href="">
              <img class="bus-form-img" src="pull-up.jpg" alt="Trolltunga Norway">
            </a>
            <div class="desc" id="bodyDamageDesc">AirSystem</div>
I also tried doing a simple alert and its not even targeting the a tag. My javascript link is set up correctly.
A little background, the html is getting generated dynamically from a previous javascript function. When I use chrome developer tools, all the html shows just fine. Any ideas on what could be causing this?
 
     
    