Hi Dave,
>> I have a specific page that needs jQuery and I'm having conflict issues.
>> First, has anyone gotten jQuery to work with NT? I've already used jQuery.noConflict().
I've not played with jQuery yet. What is the nature of your conflict?
It seems like the most likely conflict is with prototype, which we are using.
>> Second, is there a way to tell nettalk NOT to include it's standard javascript
yes. If for the whole site, then in the web server procedure, right click, choose Source, and search for
ThisWebServer._SitesQueue.Defaults.HtmlCommonScripts
You'll see where it (and all the browser specific script properties) are set.
You can override them here if you like, and do a
Put(ThisWebServer._SitesQueue)
If you want to override just one page, then before the page header is sent (which depends on the procedure type being called) you can set the local version. ie
p_web.site.HtmlCommonScripts
etc.
>> and not use it?
um - well no. If, for example you're on browse, then the browse JavaScript is necessary. If on a Form then the Form JavaScript is necessary.
Cheers
Bruce