Question : Create an href link within my javascript code

This should be really simple. I want to put a simple link in some output code that I have in javascript. The code I have is attached.

Why won't simple <a href> tags render in javascript?
1:
2:
3:
4:
5:
6:
7:
options.statusUpdate = function( quizInfo, $currQuiz ){
        if( quizInfo.hasQuit ){
            var response = "If you are interested in receiving more information about spine care near you, we can help connect you with the experts in the Sutter Health network <a href="http://www.sutterhealth.org">Click Here</a> <br> <br> This information has been provided by Sutter Neuroscience Medical Group's spine surgeon <a href="http://www.sutterhealth.org/ProviderSearch/?sitecfg=75&action=providerdetail&masterid=5381&isLevelOne=">Dr. Gary Schneiderman.</a>"
			$( $currQuiz ).find( ".q-statDetails" ).hide();
			$( $currQuiz ).find( ".q-extraStat" ).html( response );

        }

Answer : Create an href link within my javascript code

Thanks Andy, but that's not what I am looking for either. After googleing, I found that if I put the URL's in single quotes (') rather than double quotes (") it works.

Thanks for your efforts!
Random Solutions  
 
programming4us programming4us