How do I select more than 1 framework with jsFiddle?

JavascriptJqueryknockout.jsJsfiddle

Javascript Problem Overview


How do I actually get jsfiddle to use more than 1 library? I can only seem to get it to use either jquery OR knockout but not both. Yet when I look at other peoples fiddles they dont seem to have this problem. Really annoying dont know why its so diffuclt and no searches on the internet yielded anything!!!

Thanks

Javascript Solutions


Solution 1 - Javascript

You can only assign one framework via the dropdown in the sidebar. If you need to add another framework you need to add a resource using a link to a CDN.

Solution 2 - Javascript

Use this to add another framework. Sample showing knockout cdn

$.getScript("//cdnjs.cloudflare.com/ajax/libs/knockout/2.2.1/knockout-min.js", function(){
    /* Lines of code */
    });

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionExitosView Question on Stackoverflow
Solution 1 - JavascriptRory McCrossanView Answer on Stackoverflow
Solution 2 - JavascriptOkkyView Answer on Stackoverflow