3
I have some functions and they only work if they’re put in the same file where the code is that will use them. Break up with:
<script type="text/javascript" src="js/funcoes.js"></script>
Function:
$(function($){
$('#enviar').click(function (e) {
var linhas = $('#linhas').val();
var plantas = $('#plantas').val();
var combo =$('#haoum').val();
var area = $('#area').val();
var resultado;
var resultado2;
if (combo == "ha") {
resultado = (Number(area)*Number(10000))/(Number(linhas)*Number(plantas));
$("#divPrincipal").html('<p class="alert-success">Você terá aproximadamente ' + resultado + ' plantas </p>');
$("#divsecundaria").html('<p class="alert-success">Com estas configurações você poderá colher em média ' + area*Number(15) + ' toneladas </p>');
} else {
resultado = (Number(area))/(Number(linhas)*Number(plantas));
$("#divPrincipal").html('<p class="alert-success">Você terá aproximadamente ' + resultado + ' plantas </p>');
$("#secundaria").html('<p class="alert-success">Com estas configurações você poderá colher em média ' + (area/Number(24200))*Number(15) + ' toneladas </p>');
}
});
});
$(function($){
$('#enviar2').click(function (e) {
var linhas = $('#linhas2').val();
var plantas = $('#plantas2').val();
var combo = $('#haoum2').val();
var area = $('#area2').val();
var resultado;
if (combo == "ha") {
resultado=(Number(area))/(Number(linhas)*Number(plantas));
$("#divPrincipal2").html('<p class="alert-success">Você terá aproximadamente ' + resultado + ' plantas </p>');
} else {
resultado = (Number(area)/Number(10000))/(Number(linhas)*Number(plantas));
$("#divPrincipal2").html('<p class="alert-success">Você terá aproximadamente ' + resultado + ' plantas </p>');
}
});
});
Someone knows where it’s wrong?
Has no need of 2
$(function($){
. You can put everything within 1, remembering that you are using jquery, so you should include the jquery library before that file with the functions– Antony Alkmim
And the cause of the problem is exactly what @Antonyalkmim said: what’s inside a
$(function($){
does not see what is in the other. They are distinct scopes.– bfavaretto
Also, check the Network Inspector and make sure that this file, in this directory is being found under the Request you need it.
– Bruno Augusto