BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
window.open('https://www.facebook.com', '_system'); |
<span> Change the Slider value: If the value above "50" means another url will open </span>
<div id="slider" data-role="ejmslider" data-ej-change="onChange" data-ej-value="50"></div>
<script>
function onChange(args) {
if (args.value > 50)
window.open('myapp://foo=bar','_system');
}
</script> |
<input id="button" type="button" data-role="ejmbutton" data-ej-text="Launch myapp" />
<script>
$(function () {
$("#button").click(function () {
window.open('myapp://foo=bar','_system');
});
$("#button").trigger('click');
});
</script> |