Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Creating HTML macro that will search in multiple defined wiki pages

Madysen Gardner August 23, 2019

Hello,

I have a few wiki spaces and would like to create a search bar using the HTML macro that will allow me to search within only the few spaces I've defined. I'm not handy with HTML and would like some help with an HTML macro that will allow me to do this. I know the newer version of Confluence has this ability but my org will not update to a new version.


Thank you!

2 answers

0 votes
Madysen Gardner August 23, 2019

This worked perfectly, thank you!

0 votes
DPKJ
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
August 23, 2019

Here is sample you can use and start your work.

It contain a simple html form with text field, and when you submit this form search result page is opened.

There is array called 'SPACES_KEY' in which you can provide all spaces you want to search with this particular form.

 

<div>
<form id="space-search" method="GET">
<input type="text" name="query" id="search-query"/>
<input type="submit" value="Search" />
</form>
<script>
AJS.toInit(function () {
var SPACES_KEY = ['CM']; //list all space you want to search in this array
var $ = AJS.$;

$('#space-search').submit(function (e) {
e.preventDefault();
var q = $('#search-query').val();
var query = 'siteSearch ~ "' + q + '" AND space in (' + SPACES_KEY.join(",") + ')';

window.location = 'dosearchsite.action?cql=' + encodeURI(query); //open new page with search results

return false;
});
});
</script>

</div>

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events