button doens't work ! I'm using .show(), hide(), toogle() and style.visibility
Ive faced a problem which I have no idea the why ... so Im here..
http://videoarts.com.br/newSite/addAlbum.php
First, It has to select the开发者_JAVA技巧 "tipo". If is "foto" a form will show up. When the its filled in the "album nome" the "ok" button will show up and if clicked, will submit the form ! works fine !!!
But, if its selected "video" a new form will show up bellow the same foto's form with a new choice. If youtube is choosen, a link's field will show up. When filled with a right link, the ok button will show up, but ITS NO POSSIBLE TO CLICK IT !
If it selected video and then "arquivo" (its a portuguese word to file) the button also will show up and i have the same problem ... not clickable ...
I use Jquery hide, show and toogle to the forms and document.getelemen(buton).style.visibility to control the button ...
any idea ???
Add Style to
#contactButton input
{ z-index: 1000;
}
The div with an id of 'contactFone' is too long. So it's over lapping the the 'contactEmail' div.
You can set the z-index of the contactEmail div to be higher than the contactFone to fix it.
Put this in your css file
#contactEmail {
z-index:100;
}
精彩评论