Posts by user129084 • 46 points
3 posts
-
1
votes1
answer552
viewsA: How to get the link from a specific bootstrap tab
You can use <a href="#" onclick="document.getElementById('nav-profile-tab').click()">Profile</a> I’m not sure if there is an option with pure HTML, that’s a Javascript output.…
-
1
votes2
answers54
viewsA: Picking up data json
Your JSON is an array, you can create your own helper, or use the filter method. The filter method takes an argument that is a callback function, this function will be called once for each item of…
-
1
votes1
answer71
viewsA: Extending javascript function with parameters
In Javascript, when you invoke a function, all arguments are stored in an object/array with the name Arguments, regardless of whether you have declared the parameters or not, so I suppose using…