I am looking for plugins (they seem to be called this way) jQuery for implementation:

  1. Modal windows, preferably without graphics, only css. It is also desirable to be loaded on json.
  2. Asynchronous post sending request with response from the script.

I looked on the jQuery website, I did not find anything concrete.

    1 answer 1

    1) $.modal(); 2) $.post(action-script, {data}, function(msg){ alert(msg); //выполняется при успешном ответе от action-script }); 

    syntax {data} - {id: 2, name: "Xan", do: some_variavle}.

    $ .post (); - derivative of the function $ .ajax ();

    $ .ajax is not a module, but a JQ method. $ .modal (); - UI.