nonce String (default: "")

Specifies the nonce attribute that will be set to the inline style injected in the <head> tag containing the dynamic media query styles.

Example

<header>
    <button class="k-rpanel-toggle"><span class="k-icon k-i-menu"></span></button>
    Logo
</header>

<nav id="navigation">
    <a href="#">Home</a>
    <a href="#">Products</a>
</nav>

<article>
    Content
</article>

<script>
    $("#navigation").kendoResponsivePanel({
        orientation: "top",
        nonce: "test1234"
    });
</script>
In this article