Advertisement
Guest User

Untitled

a guest
Dec 10th, 2012
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function(){
  2.     $('#clicky').click(function () {
  3.     $.each(bgmp.markers, function(index, obj) {
  4.         $.each(obj, function(key, value) {
  5.             //window.alert(key+':'+value);
  6.             if (key == 'visible') {
  7.                 //window.alert(obj['visible']);
  8.                 obj.setVisible(false);         
  9.                 window.alert(obj['visible']);
  10.             }
  11.         });
  12.     });
  13.     });
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement