Posts by Bruno Eduardo • 11 points
2 posts
-
1
votes2
answers429
viewsA: Remove CSS image links in @media print
Vitor, from what I understand you won’t be able to do this only with CSS. You need to check whether the url is an image or not. A suggestion is to add via JS a class in the elements where the url is…
-
0
votes1
answer55
viewsA: How to get the id of the button clicked on a result listing line by Angular JS?
You can pass the id in the function call in html. HTML: <div ng-click="getId(list.id)">List item</div> Function: $scope.getId = function(param) { console.log(param); //insira o código…