Posts by Pedro • 46 points
3 posts
-
0
votes1
answer27
viewsA: Use information from an Event in if Else
From what I saw you used the event to know which button you clicked on. In this case, it would be easier to use this. this can, in non-technical terms, resume the initial code selector. For example:…
-
0
votes1
answer33
viewsA: Show tooltip only when no modal is open
The tooltips are not displayed in :hover when modals are open. Anyway, if you display it, you can hide it when the modal is opened, using: $(document).on('show.bs.modal', '.modal', function () {…
-
0
votes2
answers58
viewsA: Take Data from Session with Foreach
Hello, Junior! Welcome to Stack Overflow! When using $midia['getCreatedTime'] you are trying to call the index getCreatedTime of $midia, which is not an array, but rather a string/int within the…