Where can I access the code for the search bar for the events calendar? The one that has: Events In (Date) | Search (Search) and Near(Location). I’d like to change some of the placeholder text, and also for the Near specifically, Id like to add an autocomplete jquery list to the text input.. in which folder and which file can i make these modifications?
script for autocomplete (near, location input)
<script>
$(function() {
var availableTags = [
“ActionScript”,
“AppleScript”,
“Asp”,
“BASIC”,
“C”,
“C++”,
“Clojure”,
“COBOL”,
“ColdFusion”,
“Erlang”,
“Fortran”,
“Groovy”,
“Haskell”,
“Java”,
“JavaScript”,
“Lisp”,
“Perl”,
“PHP”,
“Python”,
“Ruby”,
“Scala”,
“Scheme”
];
$( “#whatevertagthenearlocationsinputhas” ).autocomplete({
source: availableTags
});
});
</script>
thanks