Reputation: 1576
I want to add an attr data-columns
into <div id="grid">
Like this : <div id="grid" data-columns>
I try it but it does not work : $('#portfolio').attr("data-columns");
Thanks for your help !
Upvotes: 0
Views: 22
Reputation: 1616
If you want to set an attribute, you need to give it a value:
$('#portfolio').attr("data-columns", "yourvalue");
Upvotes: 1
Reputation: 684
First you have to give some values to data-columns
<div id="grid" data-columns="some Value">
Then access it like
var x = $('#grid').attr("data-columns")
Upvotes: 0