Guest User

Untitled

a guest
Jun 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. function make_chart(src){
  2.  
  3. $('#chartImage').hide('slow');
  4. $('#chartImage').html('');
  5.  
  6. dt_inicial = $('#dt_inicial').val();
  7. dt_final = $('#dt_final').val();
  8.  
  9. jQuery('<img>')
  10. .attr('src', src+'?dt_inicial='+dt_inicial+'&dt_final='+dt_final)
  11. .appendTo('#chartImage');
  12.  
  13. $('#chartImage').show('slow');
  14.  
  15. }
Add Comment
Please, Sign In to add comment