Ivan Ivković Posted May 16, 2012 Share Posted May 16, 2012 Hey guys I need help over client side invalid input stuff. This is my site I'm making. I wanna make as great as I can. http://pixpresso.mycyberlove.com on http://pixpresso.mycyberlove.com/categories onclick at the category you get an AJAX popup window for seraching sum stuff, basically. This is the code: function loadAjaxPopup(widget, action, criteria){ $('#background').animate({opacity: '0.45'}, 0).fadeIn(200); $('body:not(#background)').append('<div class="popup"></div>'); $('.popup').fadeIn(200); $.get( '/ajax/' + widget + '/' + action + criteria, function(data){ $('.popup').append(data); $('.data').fadeIn(200); }, 'html' ); } How can I "hack" my project to change the /ajax/ value and to produce an error404 page in the popup so I can change it to suit the popup aswell? Try typing http://pixpresso.mycyberlove.com/dfsgasdg that will produce the error too. But I wanna create error404 notification for popup in case something goes wrong. So I need to find a way to change my /ajax/ value in browser to produce an error. Is this possible? Chrome inspector doesn't work so far.. Quote Link to comment https://forums.phpfreaks.com/topic/262599-how-do-i-change-my-user-input-i-send-to-my-website-in-javascript-in-browser/ Share on other sites More sharing options...
trq Posted May 16, 2012 Share Posted May 16, 2012 You should use jQuery's ajax() method instead. It has a statusCode event which is prefect for this situation. See http://api.jquery.com/jQuery.ajax/ Quote Link to comment https://forums.phpfreaks.com/topic/262599-how-do-i-change-my-user-input-i-send-to-my-website-in-javascript-in-browser/#findComment-1345881 Share on other sites More sharing options...
Ivan Ivković Posted May 16, 2012 Author Share Posted May 16, 2012 As I woke up i realised how big of an idiot I was. I could have just changed the file and saved it then try. I spent my few hours trying to change it via browser ROFL. Thanks thorpe. Quote Link to comment https://forums.phpfreaks.com/topic/262599-how-do-i-change-my-user-input-i-send-to-my-website-in-javascript-in-browser/#findComment-1345982 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.