Widget:Companies/Search: Difference between revisions

From TwogPedia
mNo edit summary
mNo edit summary
Line 17: Line 17:
   // Use the selected template as a parameter in the parser function
   // Use the selected template as a parameter in the parser function
   var parserFunction = "{{Companies/Search" + parameters + "}}";
   var parserFunction = "{{Companies/Search" + parameters + "}}";
 
  console.log(parserFunction)
   // Replace the content in the dynamic content container with the parsed template
   // Replace the content in the dynamic content container with the parsed template
   $.get(mw.util.wikiScript('api'), { action: 'parse', format: 'json', text: parserFunction }, function(data) {
   $.get(mw.util.wikiScript('api'), { action: 'parse', format: 'json', text: parserFunction }, function(data) {
Line 23: Line 23:
     var content = document.createElement('div')
     var content = document.createElement('div')
     content.innerHTML = parsedContent
     content.innerHTML = parsedContent
console.log(content)


     if ( content.querySelector('.mw-parser-output #companies-search-container') ) {
     if ( content.querySelector('.mw-parser-output #companies-search-container') ) {

Revision as of 16:54, 26 March 2024