Jump to content

Getting Response In Firebug - But Not To Browser?


MoFish

Recommended Posts

Hi,

 

I have a form posting to a php page which does some echo's.

        <div class="content"></div>	

        <script>
	$('#designForm').submit(function(event) {
		event.preventDefault();
		$.ajax({
			type: 'POST',
			url: 'inc/design/design.process.php',
			data: $(this).serialize(),
			dataType: 'html',
			complete: function (data) {
				$('.content').html(data);
			}
		});
	});
	</script>	

I'm somehow getting responses in firebugs console, but nothing to in the webpage itself.

 

help1.png

 

Could anyone help shine some light onto why the messages would not be getting inserted into the .content div as i would have expected, but appear to be working in console?

 

Thanks,

 

MoFish

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.