Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <input type="text" name="create--post--youtube">
  2. <small>Введите название или вставьте ссылку видео YouTube</small>
  3.  
  4. <script>
  5. $('input[name=create--post--youtube]').change(function(){
  6. var value = $(this).val();
  7.  
  8. if (...) {
  9. console.info('Введён поисковой запрос');
  10. } else {
  11. console.info('Введена ссылка на видео YouTube');
  12. }
  13. });
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement