View Single Post
Old 02-25-2016, 04:58 AM   #4
ipack
Registered User
 
Join Date: Oct 2015
Posts: 116
Quote:
Originally Posted by nele View Post
Hello,

To create a popup you'll need the following script:

<script language="javascript" type="text/javascript">
<!--
function popitup(url) {
newwindow=window.open(url,'name','height=200,width =150');
if (window.focus) {newwindow.focus()}
return false;
}

// -->
</script>

Then, you link to it by:

<a href="popupex.html" onclick="return popitup('popupex.html')"
>Link to popup</a>
Hi thanks for the information.

PHP Industrial Training in Chandigarh Web Development Training Chandigarh PHP Training Mohali
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
ipack is offline   Reply With Quote