DasPete
DasPete

Reputation: 851

jquery in google spreadsheet script

Is it possible to use jQuery within a google spreadsheet script? I tried adding it with <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> but it says jQuery is not defined. Well jQuery work with google apps?

Upvotes: 0

Views: 2012

Answers (1)

Serge insas
Serge insas

Reputation: 46794

JQuery can be used only in HTML service, that includes eventually a UI called from a spreadsheet but you can't use JQuery in a script outside of this particular service. See documentation here for extensive explanations.

Upvotes: 1

Related Questions