سؤال

this is my code:

<span class="button small pop1" data-bpopup='{"transition":"slideDown","speed":850,"easing":"easeOutBack"}'>Pop it up</span>

How can I get data-bopopup attribute with jQuery?

Thanks a lot.

هل كانت مفيدة؟

المحلول 2

To get the whole thing:

$('.button').data('bpopup')

To get the transition value, you can do:

$('.button').data('bpopup').transition;

نصائح أخرى

Use jQuery.data

var bpopup = $(".button.small.pop1").data("bpopup");

try this

var bpopup = $(".button.small.pop1").data("bpopup");
alert(bpopup);
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top