Disable Highlighting In Google Api Websearch Result Title July 27, 2023 Post a Comment I've been using Google Web Search API but the searched keyword is coming highlighted - with b tag- in the title property of the return object. I thought webSearchControl.setNoHtmlGSolution 1: I've just found the solution:It should be something like this :$("#googleSearch").html($("#googleSearch").html() + '<br/><a href=' + results[0].url + ' target="blank">' + results[0].titleNoFormatting + '</a>'); } CopySo basically .titleNoFormatting solves the problem here. Share Post a Comment for "Disable Highlighting In Google Api Websearch Result Title"
Post a Comment for "Disable Highlighting In Google Api Websearch Result Title"