Показать сообщение отдельно
  #1 (permalink)  
Старый 06.12.2014, 22:25
Аспирант
Отправить личное сообщение для andreydial Посмотреть профиль Найти все сообщения от andreydial
 
Регистрация: 13.05.2013
Сообщений: 39

Как отработать два события за один раз.
Может неправильно тему назвал, но по другому не знаю даже как. Есть код
div id="Type_location">
                 <form action="javascript: void(0);" onSubmit="showAddress(this.address.value); return false">
					<span id="Type_location"><label for="address"></label></span>

				<nobr><input  id="address" class="hideLOnClick fildInput" type="text" name="type1" value="Type location" onclick='hideWords($(this));' placeholder="Type location" def_val="Type location" title="Type location" limit='69' valid="^.+$" error="- Please type a location then press find" ></input>&nbsp;<input  id="find_bootton" class="fildInput" type="submit" value=" Find " ></nobr>
                </form>

        <script>
            var autocomplete = new google.maps.places.Autocomplete($("#address")[0], {});

            google.maps.event.addListener(autocomplete, 'place_changed', function() {
                var place = autocomplete.getPlace();
                console.log(place.address_components);
            });
        </script>


			</div> <!-- Type_location -->

Надо убрать кнопку
<input  id="find_bootton" class="fildInput" type="submit" value=" Find " >

но чтобы событие отработалось сразу после автозаполнения
<form action="javascript: void(0);" onSubmit="showAddress(this.address.value); return false">

Короче говоря как сократить строку
<input  id="address" class="hideLOnClick fildInput" type="text" name="type1" value="Type location" onclick='hideWords($(this));' placeholder="Type location" def_val="Type location" title="Type location" limit='69' valid="^.+$" error="- Please type a location then press find" ></input>&nbsp;<input  id="find_bootton" class="fildInput" type="submit" value=" Find " ></nobr>

и убрать второй input, но событие отработать?
За ошибки в правописании не гнобить, творчество не мое. Изменяю функционал.
Ответить с цитированием