Есть вопрос касательно реализации сайта с динамическим контентом, т.е. при изменении урла например
.../?lang=javascript/New%20York, берется слово javascript и New York и вставляется в нужное место на странице, я это реализовал с помощью js, вот к примеру так:
//Title Page
var job = loc_url.split('/')[0];
//Description
var location_job = loc_url.split('/')[1];
//Someone word
var word = job;
//url dont have location
document.title = 'Remote ' + job + ' professionals available now';
$('meta[name="description"]').attr('content', 'Quality remote ' + job + ' talent available to work with your in-house team within 4-6 weeks. Access hand-picked specialists from Europe’s largest and most affordable software engineering hub. Scale your ' + job + ' capabilities while staying lean and agile');
$('header .content .text-block h1').html('Paying too Much for ' + job + ' software developers?');
$('header .content .text-block h2').html('Find out the real market rates for quality remote ' + job + ' software developers and always pay the right price');
$('.spanScroll').html('(scroll to request resumes from our pool of available ' + job + ' engineers)');
$('.tap-our h2').html('Tap our on-demand developers to seamlessly integrate with your in-house team!');
$('.third-block h2').html('we have a number of excellent ' + job + ' candidates in our database. Join the ranks of our happy clients who have augmented their ' + job + ' teams with remote developers sourced by us');
$('footer p').eq(1).html('to get resumes of ' + job + ' software developers available to work for you right now');
Так вот суть моего вопроса, как сделать так чтобы этот js код срабатывал при просмотре кода страницы:
view-source: ...?lang=javascript/New%20York, т.е. сейчас если нажать на Ctrl + U и посмотреть код то поля пустые, т.е. код js не срабатывает.
На сколько я это понял это очень важно для СЕО.