Jump to content
  • 0

Tabs & input


ulyanovsk
 Share

Question

Собственно вопрос:

"Как разместить один и тот же input на нескольких табах?"

Например: заполняю один input на одном tab, а он автоматом заполняется на всех других tabs.

Edited by ulyanovsk
Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

Consider the following HTML:


<div class="container">
<div class="hello">Hello</div>
<div class="goodbye">Goodbye</div>
</div>

To prevent this and instead create a copy of the element, you could write the following:

$('.hello').clone().appendTo('.goodbye');

This would produce:

<div class="container">
<div class="hello">Hello</div>
<div class="goodbye">
Goodbye
<div class="hello">Hello</div>
</div>
</div>

source link

Link to comment
Share on other sites

  • 0

Javascript

=))) Ну дак ясен пень....

А какой код-то?

Ааа, т.е. тебе код написать, да? Что ж ты молчал-то, 50$.

За полторы штуки я три самоучителя смогу купить....

Спасибо и на этом....

А я, если ещё раз увижу, что ты просишь кого-то написать за тебя код, то отправлю твой пост в раздел "Коммерческие услуги", незамедлительно!

Link to comment
Share on other sites

  • 0

http://jsfiddle.net/4VZtg/ я так понял он хотел чето типа этого

Показал схематично, так что чтобы допилить - всеравно придется немного разобраться

Спасибо всем, кто помог.

Вот сам нарыл:

<form action="/" method="get"> 
<input type="text" id="a" value="" onblur="f(a)"/><br>
<input type="text" id="b" value="" onblur="f("/>
</form>
<script>
function f(x) {
a = document.getElementById('a');
b = document.getElementById('b');
if (x == a.value = b.value;
if (x == a) b.value = a.value;
}
</script>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy