skip to Main Content

Jquery fill in content of div – SEO

I have the following code: <div class=“phpversion”></div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script> <script> $(document).ready(function() { $.ajax({ url:"/core/components/seo/templates/default/functions/generic/php-version.php", success:function(result){ $( "div.phpversion” ).html(result); } }); }); </script> The aim is to fill in the div with class phpversion with the result obtained. When I use…

VIEW QUESTION
Back To Top
Search