skin

Change the current skin of the mobile application. When used without parameters, returns the currently used skin. Available as of Q2 2013.

Example

<div data-role="view" id="foo"><a data-role="button" href="#bar">Bar</a></div>

<script>
  var app = new kendo.mobile.Application();
  $(function() {
          app.skin("flat");
  });

</script>

Parameters

skin String

The skin name to switch to or empty string ("") to return to native.

Returns

String Current skin in effect.

In this article