Skip to content

Instantly share code, notes, and snippets.

@shadz3rg
Last active January 15, 2018 16:00
Show Gist options
  • Select an option

  • Save shadz3rg/17717f91be21acccec4d to your computer and use it in GitHub Desktop.

Select an option

Save shadz3rg/17717f91be21acccec4d to your computer and use it in GitHub Desktop.
//Написать Jquery плагин:
//По клику на кнопку сделать запрос по переданному аргументом url, получить json данные такого вида:
{
"items": [
{
"id" : 1,
"date" : "2016-02-18",
"title" : "Item 1"
},
{
"id" : 2,
"date" : "2016-02-16",
"title" : "Item 2"
},
{
"id" : 3,
"date" : "2016-01-10",
"title" : "Item 3"
}
]
}
//И отобразить их в виде таблицы внутри Bootstrap modal окна, при этом изменив формат даты на "d.m.Y"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment