Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 15th, 2012  |  syntax: None  |  size: 0.71 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. $(function() {
  2.  
  3.     $(".locateVehicle").click(function(){
  4.                   $("#pollingStatus").dialog('open');                  
  5.         });  
  6.  
  7.    $("#pollingStatus").dialog({
  8.                   autoOpen : false,
  9.                     width : 650,
  10.                     height: 450,
  11.                     modal : true,
  12.                     show: 'blind',
  13.                     hide: 'explode',
  14.                     buttons: {             
  15.                     background:function() {
  16.                       $(this).dialog('close');
  17.                       // id of car ?                 
  18.                     }                    
  19.                   }
  20.  
  21. });
  22.  
  23. <button class="locateVehicle" id="1">car 1</button>
  24. <button class="locateVehicle" id="2">car 2</button>
  25. <button class="locateVehicle" id="3">car 3</button>