Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 22nd, 2012  |  syntax: None  |  size: 0.38 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. $("#competency_type_id").change(function() {
  2.         // alert($(this).val());
  3.         $.ajax({
  4.           'type': 'POST',
  5.           'url' : '/competency/makeform/' + $(this).val(),
  6.           'data': {competencyId: $(this).val(), EmployeeId: $(employee_id).val() },
  7.           'success' : function(data) {
  8.             $('#competency_meta_data').html(data);
  9.           }
  10.         });