Thu May 11 2017
Copied to clipboard! Copy reply
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
<script>

// test: hide cddl - lp/sbsr
$(document).ready(function(){

$(function(){
	$('.nov_2016_online_cddl_container').hide();

	var test_html = '<style type="text/css"> .cddl_test_link_container{ padding: 20px 0px; font-size: 14px; } .cddl_test_link_container a{ color: #0098db; text-decoration: none; } .cddl_test_link_container a:hover{ color: #1ae; } </style> <div class="cddl_test_link_container"> <a data-productmix="cddl" class="js_cddl_test_toggle js_nov_2016_online" href="#"> Click here for CD-ROM or Download&nbsp;Products </a> <a data-productmix="online" class="js_cddl_test_toggle js_nov_2016_cddl" href="#"> Click here for Online Subscription&nbsp;Products </a> </div>';
	$(test_html).insertAfter('.nov_2016_guarantee_vertical');

	$('.js_cddl_test_toggle').on('click', function() {
		var tab = $(this).attr('data-productmix');

		var media;

		if (tab === 'online') {
			media = 'subscription';

			$('.js_nov_2016_online').show();
			$('.js_nov_2016_cddl').hide();
		} else {
			media = $('input[name=nov_2016_cddl_toggle]:checked').attr('data-media');

			$('.js_nov_2016_online').hide();
			$('.js_nov_2016_cddl').show();
		}

		$(document).trigger('product_change', {
			'media': media
		});

		return false;
	});
});



});
</script>