i want to open my link page in window.open page..i kept my url in one variable and i pass that variable in href link..
here is my link
<?php $linkvalue = "../mod/scorm/player.php?a=".$row->instance."¤torg=".$orgidentifier."&scoid=".$scoid."&sesskey=".$_SESSION['USER']->sesskey."&display=popup&mode=normal"; ?>
And i used like this
<a class="btn btn-primary btn-xs" href="<?php echo $linkvalue; ?>">LAUNCH</a>
i want to open the above link using window.open
can anyone help me how to do that..
Thanks in advance..