2
Guys, it’s really simple, I have a form that can be used for various services. I need the page subtitle to change according to the choice (in a select) of the service.
I’m using the following a bit of code
<header class="jumbotron">
<h1>
<img src="img/logo.png">
</h1>
<h2>Pedido de Serviço de importação</h2>
<h3><h3> //AQUI FICARIA O SUBTITULO DA PAGINA
</header>
<fieldset class="campos">
<legend>Dados do serviço</legend>
<div class="form-group">
<label for="servico">Tipo de serviço</label>
<select name="servico" class="form-control" id="servico">
<option value=""></option>
<option value="DESOVA DIRETA C/ DEVOLUÇÃO DE VAZIO">DESOVA DIRETA C/ DEVOLUÇÃO DE VAZIO</option>
<option value="DESOVA DIRETA">DESOVA DIRETA</option>
<option value="DESPALETIZAÇÃO">DESPALETIZAÇÃO</option>
<option value="ETIQUETAGEM">ETIQUETAGEM</option>
<option value="FOTOS">FOTOS</option>
<option value="MONITORAMENTO DE TOMADA ELETRICA">MONITORAMENTO DE TOMADA ELETRICA</option>
<option value="OVAÇÃO ">OVAÇÃO </option>
<option value="PALETIZAÇÃO">PALETIZAÇÃO</option>
<option value="PESAGEM DE VOLUMES">PESAGEM DE VOLUMES</option>
<option value="POSICIONAMENTO DE CARGA">POSICIONAMENTO DE CARGA</option>
</select>
I tried to use it this way it didn’t work. But the guy up there already gave me the help. Thanks for the attention friend
– erikasena