Template:2011FR/Form-section-links: Difference between revisions

From Donate
Jump to navigation Jump to search
Content deleted Content added
Cbarr (talk | contribs)
No edit summary
Cbarr (talk | contribs)
No edit summary
Line 5: Line 5:
.collapsible-container{
.collapsible-container{
font-size: 0.8em;
font-size: 0.8em;
cursor: pointer
}
}


Line 50: Line 51:


function triggerLeave(elem){
function triggerLeave(elem){
// document.getElementById(elem + '-container-contained').style.display='none';
// document.getElementById(elem + '-collapsed-marker').style.display='inline';
// document.getElementById(elem + '-expanded-marker').style.display='none';
}

function triggerClick(elem){
document.getElementById(elem + '-container-contained').style.display='none';
document.getElementById(elem + '-container-contained').style.display='none';
document.getElementById(elem + '-collapsed-marker').style.display='inline';
document.getElementById(elem + '-collapsed-marker').style.display='inline';
Line 69: Line 76:
</div>
</div>


<div class="collapsible-container" id="donor-container" onmouseover="triggerHover('donor');" onmouseout="triggerLeave('donor');">
<div class="collapsible-container" id="donor-container" onmouseover="triggerHover('donor');" onmouseout="triggerLeave('donor');" onclick="triggerClick('donor');">
<span id="donor-collapsed-marker" class="collapsible-container-marker">&#9650;</span>
<span id="donor-collapsed-marker" class="collapsible-container-marker">&#9650;</span>
<span id="donor-expanded-marker" class="collapsible-container-marker">&#9660;</span>
<span id="donor-expanded-marker" class="collapsible-container-marker">&#9660;</span>
Line 78: Line 85:
</div>
</div>


<div class="collapsible-container" id="tax-container" onmouseover="triggerHover('tax');" onmouseout="triggerLeave('tax');">
<div class="collapsible-container" id="tax-container" onmouseover="triggerHover('tax');" onmouseout="triggerLeave('tax');" onclick="triggerClick('tax');">
<span id="tax-collapsed-marker" class="collapsible-container-marker">&#9650;</span>
<span id="tax-collapsed-marker" class="collapsible-container-marker">&#9650;</span>
<span id="tax-expanded-marker" class="collapsible-container-marker">&#9660;</span>
<span id="tax-expanded-marker" class="collapsible-container-marker">&#9660;</span>

Revision as of 10:17, 31 October 2011

<html>

<style type="text/css">

.collapsible-container{

 font-size: 0.8em;
 cursor: pointer

}

.colapsible-container-trigger{

 color: blue;
 font-size: 1.2em;

}

.collapsible-container-marker{

 color: blue;

}

.collapsible-container-contained{

 display: none;
 background-color: #FFFFFF;
 border: 1px solid #AAAAAA;
 padding: 1em;

}

  1. donor-collapsed-marker{
 display: inline;

}

  1. donor-expanded-marker{
 display: none;

}

  1. tax-collapsed-marker{
 display: inline;

}

  1. tax-expanded-marker{
 display: none;

}

</style>

<script type="text/javascript">

function triggerHover(elem){

 document.getElementById(elem + '-container-contained').style.display='block';
 document.getElementById(elem + '-collapsed-marker').style.display='none';
 document.getElementById(elem + '-expanded-marker').style.display='inline';

}

function triggerLeave(elem){ // document.getElementById(elem + '-container-contained').style.display='none'; // document.getElementById(elem + '-collapsed-marker').style.display='inline'; // document.getElementById(elem + '-expanded-marker').style.display='none'; }

function triggerClick(elem){

 document.getElementById(elem + '-container-contained').style.display='none';
 document.getElementById(elem + '-collapsed-marker').style.display='inline';
 document.getElementById(elem + '-expanded-marker').style.display='none';

}

</script>

   Make a monthly donation
   Other ways to give
   Frequently Asked Questions
   
   
   Tax deductibility information
     Wikimedia Foundation is a non-profit charity established in the United States under the US IRS Code Section 501(c)(3), and, for that reason, donations from persons or entities located in the United States may benefit from tax deductible status. Donations from persons or entities located outside the United States may not be eligible for tax deductions in the United States and elsewhere; in such cases, donors should seek local tax advice. Importantly, Wikimedia does not seek donations from persons or entities located in any jurisdiction that prohibits or restricts fundraising activities by international charities such as Wikimedia or applies gift taxes on donations made to such international charities.
   
   
   Your information is secure
     By donating, you are sharing your information with the Wikimedia Foundation, the nonprofit organization that hosts Wikipedia and other Wikimedia projects, and its service providers in the U.S. and elsewhere pursuant to our donor privacy policy. We do not sell or trade your information to anyone. For more information please read our donor policy.

<html>