ここに私のコードスニペットがあります:
    <div id="navbar">
        <a href="index.html" >
        <img class="navbar" src="http://ssss.com/imgs/WG_home.png" />
        </a>Home
    </div>
    function used to hide:
    $(document).ready(function() { 
     alert("hello");
    if (location.search=="?value=nohome")
       {
        $("img[class='navbar']").hide();
       }
 });
画像を非表示にする方法を知っている人はいますか?
ムラーナ