[jQuery] Re: jQuery in loaded content doesn't work

2009-09-24 Thread mstone42
Thanks, Chris! I'll give livequery a try.

[jQuery] jQuery in loaded content doesn't work

2009-09-23 Thread mstone42
I am trying to convert a website currently implemented in PHP with server-side includes, to not use only Javascript (and jQuery AJAX). The main navigation page has a list of links. Clicking on a link pulls in dynamic content and populates a div on the page. I am using .live() and .load() to

[jQuery] Re: content containing JS retrieved via AJAX crashes browser

2009-09-15 Thread mstone42
After doing a bit more research, I've tried using live() and load(), both with no further advancement. Can anyone help shed some light on this problem? Please?!? --Mitch

[jQuery] content containing JS retrieved via AJAX crashes browser

2009-09-11 Thread mstone42
I am trying to create a a page that pulls in some content via AJAX. Here are the details: The base page has a bulleted list which is clickable. This list is inside a content element which itself is in a parent element (div id=parent_containerdiv id=base_contentul id=the_list.../ul/div/div) On

[jQuery] changing list image on click

2009-04-22 Thread mstone42
I have a list of links on a page that do some javascript functions. I want to be able to swap out the bullet image on the list element whenever the link is clicked. Refreshing the page would, of course rest the images, which is fine. Here's the list ul id=buttons lia class=toggleIB

[jQuery] Re: changing list image on click

2009-04-22 Thread mstone42
OK, after a bit more effort I solved my own problem. style type=text/css ul#buttons li { list-style-image: url(../images/bullet.png); } ul#buttons li.checked { list-style-image: url(../images/bullet_check.png); } /style script type=text/javascript $('a.toggleIB').click(function()