CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   JavaScript frameworks (http://www.codingforums.com/forumdisplay.php?f=62)
-   -   help! (http://www.codingforums.com/showthread.php?t=178283)

sethwb 09-28-2009 07:06 PM

help!
 
The following code is driving me MAD...

I just want the h5 to be clickable, and when you click it it will show the company details, when you click it again it hides them! I'm seriously going crazy because the function works in firebug but not when I upload it to the site!!!!! ARRGH!!! Why would it do this???

Code:

jQuery(document).ready(function (){
        jQuery("#meme").click(function(){
                        $(this).parents(".specialistContainer").find(".twistyContent").toggle();
                        $(this).find("span").remove();
                        $(this).prepend("<span>-</span>");
                });
});


...

<div style="display:none;">
    <div class="specialistContainer">
        <h5>Company name</h5>
        <div class="twistyContent">
            123 street
            <br/>
            Lotherton Way
            <br/>
            Garforth
            <br/>
            Leeds
            <br/>
            LS25 4GB
            <br/>
            0113 287 2222
        </div>
        <a href="mailto:companyemail" style="color: #000;font-weight: bold;">info@companyemail.com</a>
        <br/>
        <a href="http://www.companyurl.com" target="_blank" alt="Paul Turner Signwriters" title="Paul Turner Signwriters" style="color: #000;">www.companyurl.com</a>
    </div>
</div>

What am I doing wrong!??! :confused:

Fumigator 09-28-2009 07:07 PM

See #2:

http://www.codingforums.com/postguide.htm

sethwb 09-29-2009 03:22 PM

Ok to anyone seeking the answer:

My problem was different. I found out from a little more investigation the page is dynamically copying the HTML from a hidden portion of the page, & inserting it as new HTML of a newly created element. That is why the event handler's were not being attached to the proper element and thus not registering clicks.

the code above needs some minor tweaks but it works if youre using those names


All times are GMT +1. The time now is 08:56 PM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.