I am trying to send MY location to my js file. The location have the gives correct value when it is echoed from php. But when i try to access it from my js  it does not access the correct value instead contains the value `<?php echo $location;?>` well how can i access the value in js?
PHP
while($loop->have_posts()):$loop->the_post();?>
                    <?php $location=get_field('location');?>
                        <div class="col-sm-15">
                            <div class="widget-box">
                                <div class="weather"></div>
                            </div>
                        </div>
                    <?php
                endwhile;
locate must contain the value of location passed by php every tym the code loops` but why it is not actually passing any data?
jS file
 var locate="<?php echo $location?;>";
 alert (locate);
 $(".weather").html(html);   
 
     
    