Guest User

Untitled

a guest
May 25th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. if(!empty($_POST['img_filter'])) {
  2. $source = __DIR__.'/MIW 600/'.$_POST['img_filter'].'.jpg';
  3. echo $source;
  4. }
  5.  
  6. jQuery("#filter_number").on("keyup", function () {
  7. var d = jQuery("#filter_number").val();
  8. if(d != null && d != '') {
  9. jQuery.ajax({
  10. type: "POST",
  11. url: ajax_object.ajaxurl,
  12. data: {
  13. 'action': 'ajax_object',
  14. 'img_filter': d
  15. },
  16. success: function (data) {
  17. jQuery("#drawing").attr('src', data);
  18. console.log(data);
  19. }
  20. });
  21. }
  22. });
  23.  
  24. Not allowed to load local resource: file:///C:/OpenServer/domains/wordpress-test/wp-content/plugins/oil-filters/MIW%20600/H1013.jpg`
Add Comment
Please, Sign In to add comment