$(document).on('click', '#goid1', function () { code example
Example 1: jquery click event
$('#selector').on('click',function(){
//Your code here
});
Example 2: jquery click event
$( "#other" ).click(function() {
$( "#target" ).click();
});