Created
June 20, 2012 21:29
-
-
Save fapestniegd/2962345 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| google.maps.event.addListener( pointMarker, 'click', function() { infowindow.open(markerdata.map, pointMarker); | |
| $('.tabs li').click(function() { | |
| $('.tabs li').removeClass('active'); | |
| $(this).addClass('active'); | |
| $('.tab_content').hide(); | |
| var selected_tab = $(this).find('a').attr('href'); | |
| $(selected_tab).fadeIn(); | |
| return false; | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment