Reputation: 22688
I'd like to use Cocoa WebView for display of email messages. For security/privacy purposes I want to disable JavaScript but, incredibly enough, can't find any way to do it in the documentation.
Thanks in advance for any hints.
Upvotes: 4
Views: 1449
Reputation: 5569
Check out WebView
's -(WebPreferences *)preferences, which has a -(void)setJavascriptEnabled:(BOOL)flag option.
Upvotes: 3