Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function load_part_price_select(id, value) {
- // alert(id);
- // alert(value);
- $('#' + id ).live('change',function() {
- $.ajax({
- url: '/parts/' + value + '/price',
- type: 'get',
- context: this,
- dataType: 'script',
- success: function(responseData) {
- // alert('success: ' + responseData);
- $(this).nextAll("span.price:first").html(responseData);
- }
- });
- });
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement