html - Bootstrap: Add Button to list-group-items -


i need add multiple actions list group items, purple area needs follow link, , yellow area open modal.

currently list group items anchors, since not valid html nest anchors or buttons, searching solution.

any ideas?

example

icon have id, give id input , use jquery code.

$(document).ready(function(){  $('#simple').click(function(){    window.onload = window.location.href = "http://stackoverflow.com";        });  });    $(document).ready(function(){  $('#basic-addo1').click(function(){    window.onload = window.location.href = "http://stackoverflow.com";        });  });
<div class="input-group">    <span class="input-group-addon" id="basic-addon1">@</span>    <input type="text" class="form-control" placeholder="username" aria-describedby="basic-addon1" id="simple">  </div>


Comments

Popular posts from this blog

html - Styling progress bar with inline style -

java - Oracle Sql developer error: could not install some modules -

How to use autoclose brackets in Jupyter notebook? -