I've styled the new WP Admin Bar to my liking, and added a "Hide" button. I set the button to slideToggle the "wpadminbar" div. When I click to hide it, the div and search form (which is nested in the "wpadminbar" div) both toggle. Here's a video of the issue...
The code is pretty straight forward.
$(function() {
$("a#hide-admin").click(function(){
$(this).toggleClass('hidden', 1000);
$("#wpadminbar").slideToggle(1000);
});
});
The same thing happens when I change .slideToggle to .toggle. Any idea what's causing this and/or how to remedy it?
EDIT Here's all of the pertinent code.
<div id="wpadminbar">
<div class="quicklinks">
<ul>
<li> Admin Bar links go here... </li>
</div>
<div id="adminbarsearch-wrap">
<form action="http://myurl.com"
method="get"
id="adminbarsearch"
name="adminbarsearch">
<input class="adminbar-input"
name="s"
id="adminbar-search"
type="text"
value=""
maxlength="150" /> <input type="submit"
class="adminbar-button"
value="Search" />
</form>
</div>
</div>
CSS:
#wpadminbar {
position: fixed;
top: 0;
height: 41px;
width: 100%;
background: url(images/adminbar-bg.png) repeat-x;
}
.quicklinks ul {
list-style:none;
margin:0;
padding:0;
text-align:center;
display: inline;
}
.quicklinks ul li {
display: inline;
}
.quicklinks ul li a {
display:inline-block;
padding:0 10px;
text-decoration: none;
font-weight: 700;
color: #fff;
line-height: 41px;
font-family: "Helvetica", Arial, sans-serif;
font-size: 12px;
text-shadow: 1px 1px 0 #111;
}
#adminbarsearch {
width: 250px;
height: 41px;
position: fixed;
right: 10px;
top: 10px;
}
#hide-admin {
display: block;
position: fixed;
right: 10px;
top: 51px;
font: bold 11px Helvetica, Arial, sans-serif;
color: #fff;
background: #C91D07;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
border-radius: 20px;
padding: 6px 10px;
cursor: pointer;
}
#hide-admin.hidden {
top: 10px !important;
}

toggleClassand theslideToggle? Surely just theslideTogglewould be enough? – lonesomeday Feb 24 '11 at 16:55