After developing a website using Boostrap and WAMP Server, I am now in the process of transferring it to a virtual server to allow more people to access it.
While the site appears to be functioning correctly, there is an issue with a drop-down toggle - when clicked, it does not display anything and simply redirects to href="#"
The code for the problematic element is as follows:
<li class="dropdown" style="border-radius: 5px;">
<a target="_blank" href="#" class="dropdown-toggle" data-toggle="dropdown" style="color:white;font-size: medium; background-color: #8A2BE2;border-radius: 5px;">Search <span class="caret"></span><span style="font-size:16px;" class="pull-right hidden-xs showopacity "></span></a>
<ul class="dropdown-menu forAnimate" role="menu">
<li><a target="_blank" href="search_1" style="color:#601e9e;font-size: medium;border-radius: 5px;">Option 1</a>
</li>
<li><a target="_blank" href="search" style="color:#601e9e;font-size: medium;border-radius: 5px;">Other Options</a>
</li>
</ul>
</li>
Any suggestions on what changes need to be made? I have already transferred all the necessary files and folders.