I can not render a script on my _Layout page. I put it in the _Layout, next to the Bundles declarations and in the Chrome debug, the Aba Network comes with 304 status. I placed it at the top of the page (_Layout) and it also did not work. I remo...
I have the following code snippet:
$(".item2").hide();
$("#show").chick(function(){
$(".item2").show();
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script><tableborder="1"&g...
Hello everyone, I'm creating this script to check the largest number and apply it as a discount, but I'm having trouble identifying the number greater and make the calculation.
The question is how to get the values with the comma and return...
I have a select component that brings the countries of the database
<div class="form-group col-md-4">
<label>País *:</label>
<select required="required" id="selecionaPais" ng-model="pessoasEnderecos.pais.idPa...
Well, I've seen this on some websites until I looked for an example on the internet but I did not find it so I'll ask for help here.
I've seen this on some sites and now I need to implement a footer in slider running the site partners, if...
I'm stuck in an exercise that I can not break free, I'd like to know why NaN is returning, I believe it's giving some trouble in the "draw" function, but I can not see which one.
var mostraBR = function(frase){
document.write(frase...
I have the following code JSFiddle
It creates a div that gives the information to insert and when calling the context menu with the direct button opens a box to insert an image.
My question is:
In part:
<div class="div-te...
Suppose there is an input that receives a phone number. If the mask returns it to be invalid, how to insert a warning (html and css) in the input to tell the user that the data is invalid? I do not have a lot of interaction with JS, I just got...