I currently do not have access to the HTML file on the server side, but I can make changes by adding additional HTML to the website. My issue is with a non-responsive site listed below, which now requires me to zoom in after it loads due to the new viewport code.
WEBSITE
I attempted the following solution, but it did not work.
<script type="text/javascript">
$('head').remove('<meta name="viewport" content="initial-scale=1.0, width=device-width" />');
$("head").append('<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />');
</script>
An ideal scenario for me would be to disable or eliminate the viewport and have the site load as a non-responsive website like it was previously.
Thank you!