so would i be right to guess that this is the area of the code in csl.js file that I need to manipulate?
* function: private handleInfoClicks
* usage:
* Sets the content to the info window and builds the sidebar when a user clicks a marker
* parameters:
* infoData:
* the information to build the info window from (ajax result)
* marker:
* the csl.Marker to add the information to
* returns: none
*/
this.__handleInfoClicks = function(infoData, marker) {
this.debugSearch(infoData);
this.debugSearch(marker);
this.debugSearch(this);
this.infowindow.setContent(this.createMarkerContent(infoData));
//this.infowindow.setContent(‘hi’);
this.infowindow.open(this.gmap, marker.__gmarker);
}
Here I would place a jquery trigger written in javascript. Would it also require me to place a would I also need to code with the slp_javascript_results_string filter?