check-price.js 221 Bytes
$(function(){

    // get the click of the create button
    $('.modalButton').click(function (){
        $('#modal').modal('show')
            .find('#modalContent')
            .load($(this).attr('value'));
    });
});