A While back i started a project which involved a page spliced in half, a link on either side, which when rolled over expanded the respective side.
here’s that example;
http://camoconnell.com/ddu/
what i’ve discovered since 1st building this is the hover state and .stop() function, however i’ve tried these, and it didnt resolve the problems with the flickering on the righthand side.
any recommendations welcome,
thanks in advance
edit
Tried this with no result, updated the example link above accordingly
$('.change').stop(true,true).hover(
function() {
// do something
},function() {
// do something
}
);
try using with true as both args
http://api.jquery.com/stop/
Edit you are trying it wrong