Forum Discussion
- MCFNeilQrew CaptainJust depends on what kind of version control you want to have, and how detailed the code is.
95% of the time just referencing the CDN works well. In some cases its even faster. - _anomDiebolt_Qrew ElitejQueryUI is already loaded on QuickBase's pages (QuickBase uses the calendar widget etc) and D3 is not in QuickBase's CDN (they don't use it).
- ArchiveUserQrew CaptainThanks to both Matthew and Dan, as always very helpful.
To clarify on the D3 portion. Is it better to host the D3 file on my site or just to call it from Cloudflare?
Plus is there a way to access the CDN to see what is available? - _anomDiebolt_Qrew EliteIt is unclear what you mean by "my site". If you intend to use D3 within a QuickBase application I would suggest you load D3 in this manner:
$.getScript("https://d3js.org/d3.v3.min.js";, function() {
If you are using D3 in an externally hosted domain do whatever you want.
console.log("your code here");
});
Unless you need a D3 feature from version 4 I would stick with using D3 version 3 as indicated above for usage with QuickBase. - ArchiveUserQrew CaptainBy my site I mean QB. Your explanation above is perfect.
Thanks.