Posts by Romeu • 37 points
7 posts
-
0
votes2
answers321
viewsA: Sometimes jquery does not work
I’ve solved the problem. It was just in the e.target. I did the following: var button = $(".js-toggle-favoritos"); button.click(function () { //buttom.attr já funciona aqui dentro }…
-
1
votes2
answers321
viewsQ: Sometimes jquery does not work
I have a button on a tab that calls an API. The button lets you follow a user or stop following. Clicking on the button changes a label that is next to the button and the symbol that is on the…
-
0
votes1
answer83
viewsA: Open Graph Facebook
I did, but... I installed this package in my project: Skybrud.Opengraph, then just follow what the documentation says, it is not complicated. However this did not work at first. Went to the Facebook…
-
0
votes1
answer83
viewsQ: Open Graph Facebook
I created the following Open Graph tags to share pages of a website: <meta property="og:type" content="article"> <meta property="og:title" content="Tranzao"> <meta…
-
0
votes1
answer38
viewsQ: Site does not connect to database after published
I published a WEB application (developed in C#) in Azure using a database, it turns out that when I try to run it through the domain provided by Azure, it gives me the following error: "Server Error…
windows-azureasked Romeu 37 -
1
votes1
answer330
viewsQ: Add column to a table (foreign key) using Entity framework
I have a project in c# in a relatively advanced phase. My comic book already contains some test data. I am using code first Migrations from Entity Framework I have the Users and Images tables. The…
-
0
votes2
answers71
viewsQ: Controller code is executed but nothing happens
After much research without results I come here to ask you. The project is in MVC 5 using C#. This is the code that calls a MVC controller $('#btnPesquisa').click(function () { var textAPesquisar =…