DNN Search Module

149 views Asked by At

I am running DNN 9.4.1 and I am using the dnn's search function for my site.

The "See More Results" function on the search bar dropdown does not seem to work.

When i clicked on it, nothing happens and nothing shows up on the browser console either.

Here is a snippet of the js code here:

$('.searchSkinObjectPreview_more', $wrap).on('click', function () {
   var $searchButton = $wrap.next();
   if (!$searchButton.length) {
     $searchButton = $wrap.parent().next();
   }
   $searchButton[0].click();
   return false;
});

Is there something wrong with the js code here?

Any help is greatly appreciated. Thank you.

1

There are 1 answers

0
Joe Craig On

Yes, look to the jquery issue first. See if you can determine there are multiple versions of jQuery being loaded. If so, try to determine what is loading the out of date one.