just a quick question. I\'m having a problem with divs with onclick javascript within each other. When I click on the inner div it should only fire it\'s onclick javascript,
You can use
$("divOrClassThatYouDontWantToPropagate").click(function( event ) { event.stopPropagation(); });