We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25bcd71 commit f813d74Copy full SHA for f813d74
docs/styles-and-layout/icons-web.md
@@ -781,12 +781,16 @@ fonts in fonts/
781
</ul>
782
783
<script>
784
- $(".WebComponentsIcons .k-icon").each(function() {
+ var icons = document.querySelectorAll('.WebComponentsIcons .k-icon');
785
+
786
+ for (var i = 0, len = icons.length; i < len; i++) {
787
+ var icon = icons[i];
788
789
function iconGlyph(el) {
790
return window.getComputedStyle(el,':before').content.charCodeAt(1).toString(16);
791
}
- $(this.parentNode).append("<br />Unicode: " + iconGlyph(this) + "")
- });
792
+ icon.parentNode.insertAdjacentHTML("beforeend","<br />Unicode: " + iconGlyph(icon) + "");
793
+ }
794
</script>
795
796
<style>
0 commit comments