# User HTML page parameters

To understand HTML page parameters, you must first familiarize yourself with user page parameters that are specified through a method call.

In some cases, when developing a custom website, page generation predominantly occurs on the server side. In such scenarios, passing page-specific parameters through JavaScript code may not be convenient.

For these situations, there exists an alternative method to define HTML page parameters directly within the HTML itself:

<input type="hidden" data-sn-key="parameter name" value="value">

For example:

<input type="hidden" data-sn-key="Model year" value="2021">

# What happens if an HTML parameter is added dynamically after the initial load?

This situation can occur if:

  • The HTML parameter is added via JavaScript after some time post page load
  • The HTML parameter is inserted through Google Tag Manager

Our script scans the current page each time a request is sent to our server. This means that after adding an HTML parameter to the page, it will be considered for all requests made after the parameter addition.