Guest User

Untitled

a guest
May 26th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function select_towns(towns_string) {
  2. var towns_arr = towns_string.split(','),
  3. options = $$('#search_town_data option');
  4. towns_arr.each(function(town_id_string) {
  5. options.select(function(opt) {
  6. return opt.value.match(town_id_string);
  7. }).invoke('writeAttribute','selected',true);
  8. });
  9. }
Add Comment
Please, Sign In to add comment