Jump to content

Loading a listbox


DSTR3

Recommended Posts

I'm trying to load a listbox named Doggie with this script. It's in the header of my webpage. Can anyone see what I am doing wrong?

Thank you.

 

switch(n){
   case "Place":
  $(".Doggie").load(function()
  $.ajax({
	  type: "POST",
	  url: "place_place.php",
	  cache: false,
	  success: function (html) {
  $(".Doggie").html(html);
 }
 });
 });
 break;

Link to comment
https://forums.phpfreaks.com/topic/273361-loading-a-listbox/
Share on other sites

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.