I am using the Google Maps API. I get the Google Map by:
$map = $this->ci->gis->draw_map_position_by_lat_long($this->ci->profile_data[\'LocLat\']
The script is hogging the load
event, which can have the effect that the google map can't use it. If you use the jQuery events instead of DOM events, several scripts can use the event.
Try changing this:
jQuery(document).ready(function(){
jQuery('#photo-slider').bxSlider();
window.onload = createUploader;
});
to:
jQuery(document)
.ready(function(){ jQuery('#photo-slider').bxSlider(); })
.load(createUploader);