Wednesday, 22 July 2015

taking values from jquery data or rel or attribute

<script type="text/javascript">
function find_out_property(){
    var srcimg = jQuery(this).find('.property-info :img').attr('src');
    var title = jQuery(this).find('property-title').val();
    jQuery('.property-img-form').attr('src',srcimg);
    jQuery('.propert-title-form').val(title);
    jQuery('#property-model').modal();
}

    jQuery(document).ready(function(){
        jQuery('.property-slider').bxSlider();
       
        jQuery( ".property_form" ).each(function( index ) {
            console.log( jQuery(this).attr("rel") );
           jQuery("#field_property_detail", jQuery(this)).val(jQuery(this).attr("rel"));
           jQuery("#field_property_link", jQuery(this)).val(jQuery(this).attr("data"));
           jQuery("#field_property_name_detail", jQuery(this)).val(jQuery(this).attr("datainfo"));
           jQuery("#field_property_pdf", jQuery(this)).val(jQuery(this).attr("datainfo2"));
        });
      
       
             jQuery(".prop-images a").on('click', function(e) {
                  e.preventDefault();
                 //alert('#'+jQuery(this).attr('rel'));
                 //alert(jQuery(this).attr('href'));
                 jQuery('.'+jQuery(this).attr('rel')).css('background-image', 'url(' + jQuery(this).attr('href') + ')');
                 jQuery('.prop-images a').removeClass('active');
                 jQuery(this).addClass('active');
                 return false;
            });

    });
                                   
</script>
-----------------------------------------------------------------------------------------------
<div class="col-md-4 property_form" rel="<?php echo $post->ID; ?>" data="<?php echo the_permalink();?>" datainfo="<?php the_title(); the_content();?>" datainfo2="<a href='<?php echo @$file_download[0][image]; ?>'>Subrub report</a>">
                           

No comments:

Post a Comment