$('#lookup').live('pagebeforeshow', function() { $('#open-oe2').remove(); var b = $('
') .attr('id', 'open-oe2') .addClass('ui-grid-b') .append($('
') .addClass('ui-block-a')) .append($('
') .addClass('ui-block-b') .append($('') .attr('data-role', 'button') .attr('href', '#') .attr('data-icon', 'forward') .attr('data-theme', 'a') .text('Open Orthanc Explorer 2') .button() .click(function(e) { window.open('../${OE2_BASE_URL}/app/index.html'); }))); b.insertAfter($('#lookup-result')); });