Skip to content

Instantly share code, notes, and snippets.

@nick1m
Created January 16, 2016 20:05
Show Gist options
  • Save nick1m/80eba645bb944aeb21b9 to your computer and use it in GitHub Desktop.
Save nick1m/80eba645bb944aeb21b9 to your computer and use it in GitHub Desktop.
автоматически присваиваем ID
// ОБРАБОТКА КОНТЕНТА
// автоматически присваиваем ID кнопкам для скрытого текста и самому тексту
var id_hide_button=0, id_hide_text=0;
$(".hide-text").attr("id", function () {
var id="id_hide_text-" + id_hide_text;
id_hide_text++;
// console.log(id);
return id;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment