Currently, I am employing JQUERY and CSS to modify the default content on a website. However, I have encountered the following piece of code:
<div id="SortOptions">
Sort by:
<select id="SortMain" class="improvedcatalogdropdown">
<option value="0" selected="selected">Relevance</option>
</select>
</div>
My goal is to eliminate the text Sort By:
, while retaining the select options.
Although I attempted to achieve this using CSS, it ended up removing both the text and the select options.
#SortOptions {
display: none;
}