so on the click event, when I call the function getFavicon(), it works, but on the very next line when the timer is supposed to call it it doesn’t work. Firebug says Quote: getFavicon is not defined checkUrlFaviconTimer = setTimeout("getFavicon()",200); Code: //Favicon function getFavicon() { $.get(‘/homepage/getfavicon.php’, { url: $(‘add-link-url’).val() [...]
Hi guys, I have a problem. I’m creating a registration form dialog. The whole registration form is fetched from another page via jQuery’s ".load()". Everything works fine, except that the ".load()" function won’t fetch the script tags. Does anybody have an idea how to solve that? View full post on Tycoon Talk
Hi all I have an image with a class "right-40" Code: <img class="right-40" src=".." alt=".." /> I need to use jQuery to find any image on the page with the class "right-40", remove the class from the image, and create a wrapper DIV around the image with class "right-40". Code: <div class="right-40"><img src=".." alt=".." /></div> [...]
Hello, I’m trying to create a youtube feed that pulls the current featured video from four specified channels. It needs to pull in the username, title of the featured video and a thumbnail of the featured video (that links to the featured video). I plan on using jQuery and html. I need this asap so [...]
Hallo i am looking something like this http://www.chopard.com/en/happycolle…pycollections/ Click Go to products View full post on Tycoon Talk
I have simple toggle (button switch) function here, but I don’t know how to add cookie and how to remember position when users clicks on button. Anyone can help me to add cookie here ? HTML Code: $(document).ready(function(){ $("a.switch_thumb").toggle(function(){ $(this).addClass("swap"); $("ul.display").fadeOut(100, function() { $(this).fadeIn(100).addClass("thumb_view"); }); }, function () { [...]
Hi Guys, I have the following code. I have a div named data that gets filled in by the data from data.php How can i get it so it ONLY updates that div when the data is different as currently it doesnt. It seems to update even though its the same ( If i have [...]
Hi Guys, I have the following code. I have a div named data that gets filled in by the data from data.php How can i get it so it ONLY updates that div when the data is different as currently it doesnt. It seems to update even though its the same ( If i have [...]
i need to make a slider for the development http://flexdesigns.co.uk/box/dev/ the four content boxes must automatically scroll along all the different departments and can be manually scrolled by an arrow that will be placed at either end of the boxes how would i go about doing this, would i have to fully learn jQuery , [...]
Hey all can someone recommend to me a really simple jquery file upload plugin or script. I simply want to upload a file from local and save it to my server. Cheers Steve View full post on Tycoon Talk