4,114
edits
No edit summary |
No edit summary |
||
Line 735: | Line 735: | ||
$('.mw-search-results-info > p').text('Search results'); | $('.mw-search-results-info > p').text('Search results'); | ||
} | } | ||
// Object to store encountered titles | |||
var encounteredTitles = {}; | |||
// Iterate over each search result | |||
$('.mw-search-result-heading').each(function() { | |||
// Get the title of the current search result | |||
var title = $(this).find('a').attr('title'); | |||
// Check if the title has already been encountered | |||
if (encounteredTitles[title]) { | |||
// Hide the duplicate search result | |||
$(this).hide(); | |||
} else { | |||
// Mark the title as encountered | |||
encounteredTitles[title] = true; | |||
} | |||
}); | |||
}); | }); |