I have gridview that is populated by jquery. Below is part of my code thats giving the above error:
var codes = $(this).find(\"Code\").text(); $(\"td\", ro
tooltip() is not a function!!!
tooltip()
I solved the problem by using below steps in angular 4.
install jquery using, npm install jquery command.
npm install jquery
add the following code in the path src/typings.d.ts file.
declare var jquery:any; interface jquery { tooltip(options?:any):any; }
It solved the tooltip() issue.