type="radio"
Добавлено: 07 май 2012, 12:20
Помогите переделать с <option value="photo32123701_282682708">1</option> на <input type="radio" value="photo32123701_282682708">
Код: Выделить всё
<select id="friends_list"><option value="">Выберите</option><option value="photo32123701_282682708">1</option><option value="photo32123701_269666558">2</option></select> <input id="message_tf" value="Поздравить!"/> <a href="#" onclick = "javascript:wall();" id="send_btn">Отправить</a>Код: Выделить всё
function wall() { if ($('#friends_list option:selected').val()!='') { if($('#message_tf').val()!=''){ VK.api("getUserSettings", {}, function(data) { if (data.response) VK.api("wall.post", {message: $('#message_tf').val(), attachment: $('#friends_list option:selected').val() }); else VK.callMethod('showSettingsBox',8192); }); } else VK.callMethod('showSettingsBox',8192); }