open

Open the PopOver.

Parameters

target jQuery

The target of the Popover, to which the visual arrow will point to. This parameter is required for a tablet OS.

Example - opens the PopOver initially on view show

<div data-role="view" data-show="showPopOver">
  <a id="target" data-role="button" href="#foo" data-rel="popover">Open PopOver</a>

  <div id="foo" data-role="popover">
    <div data-role="view">
      View 1
    </div>
  </div>
</div>

<script>
var app = new kendo.mobile.Application();

function showPopOver() {
  $("#foo").data("kendoMobilePopOver").open("#target");
}
</script>
In this article