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
| <style> | |
| #mask { | |
| overflow: hidden; | |
| border-radius: 50%; | |
| position: relative; | |
| z-index: 99; | |
| height: 500px; | |
| width: 500px; | |
| border: 10px solid #000; | |
| } |
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
| ;jQuery(function($){ | |
| var maxHeight = 800, | |
| total = 0; | |
| // Du bør overvej at indsætte hver tabel som du vil loope igennem i en div som du kan bruge som | |
| // placeholder til at indsætte det modificeret indhold. | |
| $('.placeholder').each(function(){ | |
| $('table tr', $(this)).each(function(i, item){ |
NewerOlder