tags:

views:

72

answers:

2

hello all..i have some index.php page.. after download jquery drop down menu,the link text like "no back link" always appear..it disturbing my page..how to remove it?? how if it comes from installed file which consist of css file and js file?? what part that must i change?

<img src="bannersketch.png" border="0">
<div id="menu">
    <ul class="menu">
        <li><a href="index.php" class="parent"><span>Home</span></a>
        </li>
        <li><a href="#" class="parent"><span>Inspection Report</span></a>
            <div>
                <ul>
                        <li><a href="inspection_report1.php#Tabs-1" class="parent"><span>Inspection Report</span></a></li>
                        <li><a href="inspection_report1.php#Tabs-2"><span>Input Data</span></a></li>
                </ul>
            </div>
        </li>
        <li><a href="#"><span>Statistics</span></a></li>
        <li class="last"><a href="#"><span>Contacts</span></a></li>
    </ul>
</div>

alt text

A: 

I can give you one quick fix to remove that link using Jquery. But its always recommended that you find whats actually going wrong and try to remove it before the page loads. Anyways. The fix is " Make use of FIREBUG and find where exactly the link appears , is it having any class or id. And make use jquery selecters to select that link and just use the Jquery Api remove to remove that link. And one more thing write your remove code in the $(document).ready().

Ex: if its having a class then

$(document).ready(function(){ $('.your_link').remove(); });

Ashin
it just show div without id..
klox
ok can you just get me the html of that link. Just a part of it will be sufficient. Note: "You can select an element which doesn't have class or id too. Jquery provides a rich set of selecters. This link has all the details about it http://api.jquery.com/category"/selectors/"
Ashin
A: 
klox