Declaring SharePoint Client Side Taxonomy Picker Control and Reading the Selected Values and Create Item in List
In this post, We will learn how to declare the SharePoint Client Side Taxonomy Picker control and reading the values from it. Step 1: References required to load the Taxonomy Picker Control Correctly. CSS Reference: Try to download it (Refer if already have in your sites) <!-- CSS Files --> < link href = "/taxonomypickercontrol.css" rel = "stylesheet" / > <!-- Javacript Files --> JS References Files: < script src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js" > < / script > < script type = "text/javascript" src = "../_layouts/15/SP.Taxonomy.js" > < / script > < script type = "text/javascript" src = "/taxonomypickercontrol.js" > < / script > < script type = "text/javascript" src = "/taxonomypickercontrol_resources.en.js" > < / script > ...