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

Archived

This topic is now archived and is closed to further replies.

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