P
P
Pavel2015-11-11 23:29:59
JavaScript
Pavel, 2015-11-11 23:29:59

How to pass hidden fields to another form on the site?

here is the site paratovarov.ru/09 , first we write some text in the "inscription on the case" field, select the color of the case from above, then these parameters are transferred as hidden fields to the form that is called by the pop-up window.
Here is the question, how to transfer these fields to the form? How is it connected?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Alexander Lashchevsky, 2015-11-11
@Alexanevsky

Here's an example for you. You have two inputs.

<input class="from" value="Отсюда копируем текст">
<input class="to" value="Сюда копируем текст">
One visible, where the user enters the word, the other invisible, which is in the pop-up window. You need to copy the phrase there. Do this:
$('.from').keyup(function() {
  $('.to').val( $(this).val() );
});
And each time you press the key, the info from this field will be copied to the invisible one.
If you want, you can replace keyupwith focusoutor something else ...
Yes, and the color selection does not work for you (Google Chrome OS X).

A
Alexey Korchagin, 2015-11-12
@lexxor

when opening a popup, do the following:
$('#orderText').val( $('#sign').val() )

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question