Skip to content

Instantly share code, notes, and snippets.

@Pavracer
Last active February 17, 2018 20:50
Show Gist options
  • Select an option

  • Save Pavracer/5b9de280314bcf2139b66152bc8cad77 to your computer and use it in GitHub Desktop.

Select an option

Save Pavracer/5b9de280314bcf2139b66152bc8cad77 to your computer and use it in GitHub Desktop.
<script>
(function($) {
$(document).ready(function() {
function insertSn(location, position, network, sn_url) {
element_to_insert = '<li class="et-social-icon et-social-'+network+'"><a href="'+sn_url+'" class="icon"><span>'+network+'</span></a>';
after_element = location.find('li:nth-child('+position+')');
after_element.after(element_to_insert);
}
insertSn($('#footer-bottom .et-social-icons'), 2, 'instagram', 'link_goes_here');
});
})(jQuery);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment