Advertisement
Guest User

Untitled

a guest
Feb 20th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $(document).on('click', '.search-delivery > button',function(){
  2. var search = $('.search-delivery > input').val();
  3.  
  4. $('.country_name').each(function(){
  5. console.log('test');
  6. if($(this).text().trim() == search.trim()) {
  7. var top_pos = $(this).offsetTop;
  8. $("body").animate({
  9. scrollTop: top_pos
  10. }, 400);
  11. }
  12. });
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement