Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Подключения функционала к динамически добавляемым элементам #48

Open
albionix opened this issue Sep 9, 2016 · 1 comment

Comments

@albionix
Copy link

albionix commented Sep 9, 2016

Здравствуйте! Подскажите как быть? На странице есть поле ввода, в немавтозаполнения работает отлично :) Есть кнопка создающая такое же поле программно рядом. И вот в нем уже не работает автозаполнение. Как к созданному программно полю можно подключить функционал. Заранее спасибо.
Вот код которым я его создаю.

<script>
    $(function() {
        $("#add").click(function () {
        $("<div class='param'><div class='box'><input type='text' name='city' placeholder='Город'></div> ).insertBefore("#form_status_added"); 
        })
     });
    </script>
@ArtemAstakhov
Copy link

<script>
    $(function() {
        $("#add").click(function () {
             var newInput = $("<div class='param'><div class='box'><input type='text' name='city' placeholder='Город'></div> );
             newInput.find('input').kladr({.....});
             newInput.insertBefore("#form_status_added");
        })
     });
    </script>

Попробуй вот так

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants