Advertisement
Guest User

Untitled

a guest
Oct 6th, 2015
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <script>
  2. @if (Model.OrdersInEvaluation == null)
  3. {
  4. <Text>
  5. $("#evaluation-panel-heading").click(function() {
  6. $.ajax({
  7. url: '@Url.Action("EvaluationOrders", "Home")',
  8. type: 'POST',
  9. success: function(data) {
  10. if (data) {
  11. $("#evaluation-panel-body").html(data);
  12. }
  13. }
  14. });
  15. });
  16. </Text>
  17. }
  18. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement