コード例 #1
0
ファイル: view_ad.php プロジェクト: abdouh/pets
if (!empty($ad)) {
    ?>
                <!--ad image code start-->
                <input type="hidden" name="ad_id" value="<?php 
    echo $ad['id'];
    ?>
">
                <div class=" small-12 medium-12  large-7  columns left" style="padding:0 !important;">

                    <div class="price">
                        <span class="price_number"><?php 
    echo $ad['price'];
    ?>
</span>
                        <span class="price_currency"><?php 
    echo ads::get_currency_name($ad['currency']);
    ?>
</span>
                    </div>


                    <script>
                        $(document).ready(function () {
                            $(".ad_img_thumb").click(function () {
                                var current = $(this).attr('src');
                                $(".ad_img_preview").attr("src", current);

                                $(this).addClass("current_image");
                                $(this).siblings().removeClass("current_image");

                            })