Как вызвать скрипт PHP с использованием AJAX внутри функции переключения JQuery?

Я пытаюсь вызвать PHP-скрипт в моем основном файле PHP. Я хочу показать результаты из моего PHP-скрипта с запросами SQL, которые выполняются.

это то, что я пробовал до сих пор, новичок в JQuery и AJAX. заранее спасибо!

Рабочая сценария : http://jsfiddle.net/52n861ee/ thats, что я хочу сделать, но когда я нажимаю на desk_box DIV, toggle station_info DIV не создается скриптом display_stationinfo.php.

Когда я рассматриваю исходный код, оба DIVs должны быть уже созданы, но только desk_box. .. Что я делаю неправильно?

Часть JQuery / AJAX:

<div id="map_size" align="center"> <script type="text/javascript"> //Display station information in a hidden DIV that is toggled //And call the php script that queries and returns the results LIVE $(document).ready(function() { $(".desk_box").click(function() { alert("before toggle"); var id = $(this).attr("data") alert(id); alert($(this)); $("#station_info_"+id).toggle(); alert("after toggle"); $.ajax({ url:'display_stationinfo.php', type: 'GET', success:function(result){ alert("before result"); $("#station_info_"+id).html(result); alert("result: " + result); //it shoes every DIV being created and not the one that I clicked on alert("after result"); }});//end ajax });//end click });//end ready </div> <!-- end map_size --> 

display_station.php (сценарий, который я хочу вызвать):

 <?php include 'db_conn.php'; //query to show workstation/desks information from DB for the DESKS $station_sql = "SELECT coordinate_id, x_coord, y_coord, section_name FROM coordinates"; $station_result = mysqli_query($conn,$station_sql); //see if query is good if($station_result === false) { die(mysqli_error()); } //Display workstations information in a hidden DIV that is toggled while($row = mysqli_fetch_assoc($station_result)){ //naming values $id = $row['coordinate_id']; $x_pos = $row['x_coord']; $y_pos = $row['y_coord']; $sec_name = $row['section_name']; //display DIV with the content inside $html = "<div class='station_info_' id='station_info_".$id."' style='position:absolute;left:".$x_pos."px;top:".$y_pos."px;'>Hello the id is:".$id."</br>Section:".$sec_name."</br></div>"; echo $html; }//end while loop for station_result mysqli_close($conn); // <-- DO I NEED TO INCLUDE IT HERE OR IN MY db_conn.php SINCE IM INCLUDING IT AT THE TOP? 

?>