[eluser]elaniobro[/eluser]
I have an issue where if I put a php include the jQuery will not work. Below is my code:
Code:
<div class="popup-container" id="contact-container">
<?php include('email_view.php');?>
</div>
<!--
<a href="#">
<img id="map" src="<?= base_url();?>img/footer/sitemap_a.png"/>
</a>
-->
<div class="popup-container" id="qr-container">
<div class="watermark">
<?=img(array('src'=>'img/footer/vcard_a.png','alt'=>'contact'));?>
</div>
<div class="close">
<?= anchor('',
img(array(
'src'=>'img/nav/nav_close_a.gif',
'id'=>'qrBack',
'border'=>'0',
'alt'=>'Close'
)
),
array(
'onmouseover'=>'qrBack'.'.src='."'".base_url().'img/nav/nav_close_b.gif'."'".';'.'"',
'onmouseout'=>'qrBack'.'.src='."'".base_url().'img/nav/nav_close_a.gif'."'".';'.'"'
)
);
?>
</div>
<div class="clear"></div>
<div id="contact-qr">
<div class="title">
<?= img(array('src'=>'img/footer/qr/title_qrcode.gif','alt'=>'QR code'));?>
</div>
<p class="qr-content">Use your camera phone to decode, and add my contact info to your address book.</p>
<div id="qr-img">
<?= img(array('src'=>'img/footer/qr/qrcode.png','alt'=>'QR Code'));?>
</div>
<div id="qr-title">
<?= anchor('www.google.com',img(array('src'=>'img/footer/qr/qr_appledl.gif','alt'=>'Download on iTunes','id'=>'qr-apple')),array('target'=>'_blank'));?>
<p>Get your iphone QR code reader now! Click the link to see all available applicaitons in iTunes.</p>
<div class="title">
<?= img(array('src'=>'img/footer/qr/title_whatisqr.gif','alt'=>'What is a QR code'));?>
</div>
<p class="qr-content">A QR Code is a matrix code (or two-dimensional bar code) created by Japanese corporation Denso-Wave in 1994. The "QR" is derived from "Quick Response", as the creator intended the code to allow its contents to be decoded at high speed.</p>
</div>
</div>
</div>
<div class="clear"></div>
</div>
</div>
</div>