Uplevel e-solutions

Webware and Rich Internet Applications

Google and Yahoo now can search SWF

Great news ! We can find in this article that Adobe is announcing a collaboration with Google and Yahoo to enhance the searchability of SWF content :) The project runs SWF files within web spiders and allows all contents within a SWF file to be read by both major search engines. We can find there that it also covers dynamic data loaded in from requests to a server which was ignored in AJAX and SWF applications. So big milestone for RIA world :) because now it’s to complicated to tell these two major search engines about our SWF content.

  • Comments
  • Filed under: Flash, RIA
  • Problem z jQuery pod IE 6.0

    Podczas korzystania z jQuery pod IE 6.0 zauważyłem, że wywołanie funkcji w następujący sposób:

    $(document).ready(function(){
    jakas_funkcja();
    })
    

    nie odbywa się prawidłowo.

    Problem ten można jednak w łatwy sposób obejść, wywołując wybraną metodę wewnątrz funkcji setTimeout. To niewielkie opóźnienie (np. 100ms) pozwoli nam na prawidłowe działanie skryptu również pod przeglądarką MS.

    $j(document).ready(function() {
    setTimeout(function() {
    jakas_funkcja();
    }, 100);
    });
    
  • Comments
  • Filed under: JavaScript