Jump to content

How do I change my user input I send to my website in javascript in browser?


Ivan Ivković

Recommended Posts

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..

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.