<script type="text/javascript">
$(function() {
$(".fluid-width-video-wrapper").each(function(index) {
$(this).attr("id","fluidplayer" + index);
});
});
</script>
Это должно сделать это, вы можете использовать .next (), чтобы получить id
следующего элемента, если вам нужно, чтобы он был на 100% динамичным.
См .:
Каждый - http://api.jquery.com/each/
Attr - http://api.jquery.com/attr/
Редактировать
<script type="text/javascript">
$(function() {
$(".fluid-width-video-wrapper").each(function(index) {
$(this).attr("id","fluid" + $(this).children("iframe").attr("id"));
});
});
</script>
Должна быть динамическая версия.