Club409

The best damn waste of time!

Plebian Haxoring Thread

BadJohnny
Total posts: 26

Header pwnd!
Shout out to brian for giving my the idea
mwinter
Total posts: 4318
an excellent compromise. made it green for standard "mousing over this does something" interface
BadJohnny
Total posts: 26
(Updated 9/9/2009 7:33 AM)
No more edit link forever?!? (BTW love the handling of oversized avatars.)
mwinter
Total posts: 4318
yeah that feature request is on the list
acelxix
Total posts: 2394
(Updated 6/2/2011 7:42 AM)

 

outer hidden
feature request:  add the showHiddenContent(outerDivID) js function to a global js file.  To create hidden buttons you just need to follow this pattern:

 

<script type='text/javascript'>
function showHiddenContent(outerDivID){
    $("div[id*='" + outerDivID + "']").html($("div[id*='" + outerDivID + "Inner']").html());
    $("div[id*='" + outerDivID + "Inner']").css("display" "inheret");
}
</script>
<div id="hideId2">
<button onclick="showHiddenContent('hideId2');">outer hidden button</button>
<div id="hideId2Inner" style="display:none">
outer hidden<br />
<div id="hideId3">
<button onclick="showHiddenContent('hideId3');">nested hide button</button>
<div id="hideId3Inner" style="display:none">
nested hidden text
</div>
</div>
</div>
</div>
acelxix
Total posts: 2394
(Updated 6/2/2011 7:47 AM)

feature request:  add the showHiddenContent(outerDivID) js function to a global js file.  To create hidden buttons you just need to follow this pattern:

<script type='text/javascript'>
function showHiddenContent(outerDivID){
    $("div[id*='" + outerDivID + "']").html($("div[id*='" + outerDivID + "Inner']").html());
    $("div[id*='" + outerDivID + "Inner']").css("display" "inheret");
}
</script>
<div id="hideId4">
<button onclick="showHiddenContent('hideId4');">outer hidden button</button>
<div id="hideId4Inner" style="display:none">
hidden text
</div>
</div>