[jQuery] Re: append div trouble [SOLVED]

2008-05-07 Thread flipthekid

That was it Richard. thanks.
I ended up using livequery to rebind the click handler

$('#navigation  [EMAIL PROTECTED]"#"]').livequery('click', function(event) {

$('#navigation').empty().append(hex); .
.

that way the append content acts like it used to.

you can see it in action here --> http://studio4nine.com/html2/index.html
the whole idea was to be able to de link the link you clicked on.
a friend of mine helped with setting that up based on the hash in the
URL.
that way you can deep link the site, since it's only 1 html page.

kind of a goofy experiment, but i think it worked out cool.

thanks again.
gary.


[jQuery] Re: The CSS will not show at the first time of mouse over

2008-05-06 Thread flipthekid

hi andreas,

i'm brand new to this board, but have been trying out the jquery for a
while now.
i can't seem to get the same results you're describing, on a mac
anyway.

but you should preload those roll over images for the icons.
or better yet, use the css 'sprite' method.
basically you have both the off and on state in one image.
then move the image with css when you roll over it.
you define the height, width, overflow:hidden, etc in css.
you'll be able to find alot of info on that on the web.

there's some load time when you roll over your icons, that might be
effecting the clueTip?
hope that helps a little.

gary.


[jQuery] append div trouble

2008-05-06 Thread flipthekid

hey folks,
brand new here. been fiddling with jquery for a little bit now, but
this one has me stumped.

the goal is to de-link the links on a navigation system depending on
what you've clicked on.
but i need a restore function which i'm trying to do with append

the functions work fine without the append, but then i can't restore
the links i've taken off.
and after i do the append the html looks fine, but it doesn't seem to
be part of the DOM anymore.
since it won't respond to the functions anymore.

i've tried so many things and got no where.
i believe it to be NOT appending to the DOM

but again i'm new to the more complex stuff.

thanks in advance for any help.
gary.


[code DOM ready]

// get all the html in the navigation div
var hex = $("#navigation").clone().html();

// my trigger
// all links with an anchor tag inside of navigation
$('#navigation  [EMAIL PROTECTED]"#"]').click(function() {

// set a variable to what i clicked on
var clickedMe = $(this);

// restoring state of navigation div
$('#navigation').empty().append(hex);

// here i do all my style changes using the clickedMe variable
// including replacing the link i clicked on with just text
// omitted for clarity

});

[/code]