This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Example cell with JavaScript on --> | |
<td class="linked"> | |
<a href="/Datasheets/redPOWER_R4/100-400W_RS_series.aspx?" title="View RS datasheet"> | |
<a title="View RS datasheet" href="/Datasheets/redPOWER_R4/100-400W_RS_series.aspx?"> | |
<em class="good">Good</em> | |
</a> | |
</a> | |
</td> | |
<!-- Same cell with JavaScript off (HTML sent to browser) --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add skip links to sections | |
SECT.add_skip = function() { | |
// Create a placeholder we can append to | |
var $skip = $('<div class="skip"></div>'); | |
$('.body .section').each(function(){ | |
_section = $(this); | |
// Check the section has an id we can link to and a subheading | |
if (_section.attr('id').length && (_section.find('h2').length > 0) ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="sales" class="sub_banner"> | |
<div class="max"> | |
<h2>Contact [CountryName] support</h2> | |
<a href="[callback_url]" class="callback">Arrange callback</a> | |
<ul class="contacts"> | |
<li id="hcard-[forename]-[surname]" class="vcard{if usr_region}{if (usr_region != region)} secondary{endif}{endif}"> | |
<h3 class="fn"><a href="mailto:[forename].[surname]@spilasers.com" class="email" title="Email [Forename]">[Forename] [Surname]</a></h3> | |
<ul> | |
<li class="img"><img class="photo" src="foo" alt="[Forename] [Surname]"></li> | |
{if region}<li class="title">[CountryName] [Region]</li>{endif} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js" type="text/javascript"></script> | |
<script type="text/javascript"> | |
if (typeof jQuery === 'undefined') { | |
var e = document.createElement('script'); | |
e.src = 'js/jquery-1.4.3-min.js'; | |
e.type='text/javascript'; | |
document.getElementsByTagName('head')[0].appendChild(e); | |
} | |
</script> |
NewerOlder