4
I’m making a web application with Angularjs and I did this routeprovider
for single page
angular.module("app").config(function($routeProvider){
$routeProvider.when("/Proposta", {
templateUrl:"Proposta.html",
controller :"ClienteController"
});
Gee, I got a function jquery
to interact with a input
of a form on this page proposta.html
:
<script type="text/javascript">
$(function() {
$("#valor1").maskMoney({
symbol: 'R$ ',
showSymbol: true,
thousands: '.',
decimal: ',',
symbolStay: true
});
})
When I’m on the page index
and move to the page proposta.html
, this function does not work.
Thank you Onosendai... It worked!
– Luiz Fábio