I have a page where I am refreshing with ajax
only on div conteúdo
. It is configured like this:
div1: I load 2 selects where the user will choose these 2 data (class and bimester)
div 2: I load the application menu (menu.php) end of div 2
div id="content": I load the page that reads the 2 selects and loads the corresponding php page, according to the item chosen in the menu at div2
end div id="conteudo"
On the main page, where I have all these divs, I use the maskMoney
function of jquery to mask my inputs only as decimal numbers.
When I put an input inside the upper divs (1 and 2) the maskMoney works perfectly.
When an input is loaded by ajax within the content div, maskMoney
does not work.
Can anyone help me understand why this occurs and how to solve it?