jsfiddle - js fiddle images and animation not working -


i new jsfiddle cannot figure out why images , animation menu not displayed there.the animations done through jquery. supposed add through "external resources" tab? link jsfiddle

http://jsfiddle.net/apurva4689/7wdmx/

i creating website here. jquery code is:

function mainmenu() {  $("#bav .inner ul ul").css({     display: "none" }); // opera fix $("#bav .inner ul li").hover(function () {     $(this).find('ul:first').css({         visibility: "visible",         display: "none"     }).slidedown(400, 'backout'); }, function () {     $(this).find('ul:first').css({         visibility: "hidden"     }); }); } $(document).ready(function () { mainmenu(); });  $(document).ready(function () { $(".not li ").hover(function () {     $('.not li').not(this).stop().animate({         opacity: 0.4     }, 400); }, function () {     $('.not li').not(this).stop().animate({         opacity: 1     }, 400); });  $(".vision ").click(function () {      $("#rightcolumn ").html(" < div id = "     rightcol_h1 " > vision < /div>"); }); $(".mission").click(function () {     $("#rightcolumn").html("hi <b>there!</b > "); }); }); cufon.replace('.not li a', { textshadow: 'black 1px 1px', hover: 'true' }); 


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -