treehouse : what would you like to learn today?
Web Design Web Development iOS Development

uba

  • Another Sticky Footer That Always Shows

    Oh so you mean a docked footer so to speak. Nice!
    Comment by uba March 2009 permalink
  • Another Sticky Footer That Always Shows

    Hi, Of course there are a lot of ways of doing this here is one more it works with all of the major browsers and IE 6. http://www.cssstickyfooter.com/
    Comment by uba February 2009 permalink
  • ASP.net?

    Well you can run ASP.NET on linux servers for free using the linux runtime for it which is called Mono .NET which is open source. And C# is similar to Java but its not Java. Here is a link to Mono ASP.NET http://www.mono-project.com/ASP.NET And t…
    Comment by uba February 2009 permalink
  • jquery and google maps

    Try using this jQuery plugin http://plugins.jquery.com/project/jmaps it should take care of the google maps for you.
    Comment by uba February 2009 permalink
  • jQ: slideToggle animation skips/jumps

    have you tried increasing the animation time?
    Comment by uba January 2009 permalink
  • how to javascript on particular page not on all pages

    You can do something like this just include it in your header. $pageUrl = $_SERVER['PHP_SELF']; $pageUrl = str_ireplace(\".php\", \"\", $pageUrl); switch ($pageUrl) { case \"page_name_1\": case \"page…
    Comment by uba November 2008 permalink
  • pop-up without javascript ?

    The only other way to open a new window is to use “target="_blank"” in your links or with your forms. But if you want control over the new windows then you have to use JavaScript.
    Comment by uba November 2008 permalink
  • offline css validation

    The only option to validate CSS in Dreamwaver is to validate them against different browsers it is not the same as the http://jigsaw.w3.org/css-validator/. If you want to try it just open your CSS file and click “Check Page” on your “Document Toolba…
    Comment by uba November 2008 permalink
  • php Redirection

    You can try another way instead of redirecting from the client side you can redirect it from the server using: header(\"Location: page_name.html\"); exit;
    Comment by uba November 2008 permalink
  • Music player?

    It is possible to have playlists in this player. Here is a link that will get you started. http://code.jeroenwijering.com/trac/wiki/FlashFormats
    Comment by uba November 2008 permalink
  • What editors do you use?

    @ScottMacD I am using the 5.0.3 version and the code collapse is on by default but make sure that you have any language selected from the Languages menu that is other than Normal. @ikthius Well Notepad++ does not offer auto tag completion but it do…
    Comment by uba November 2008 permalink
  • Fade in / fade out

    I am glad to be of any help, for jQuery all you need to do after including the main jQuery script file in you html is to write something similar to this: var $objTimer = \"\"; window.clearInterval($objTimer); $objTimer = window.setInterv…
    Comment by uba November 2008 permalink
  • Fade in / fade out

    You can create an array in JavaScript with all of the one-liners that you want to show and then write a function that gives you a random number using “Math.random()” but make sure that it does not gives a number greater or smaller than your arra…
    Comment by uba November 2008 permalink
  • What editors do you use?

    I use Notepad++, Visual Web Developer and Expression Web and all three of them offer the code collapse functionality you are looking for.
    Comment by uba November 2008 permalink
  • Music player?

    I have used “JW FLV Media Player” in a number of projects and it’s very easy to setup and it supports both audio & video files. http://www.jeroenwijering.com/?item=JW_FLV_Player Although it comes with very good documentation if you need …
    Comment by uba November 2008 permalink
  • learning XML?

    I think JavaScript will be most useful for you and after you have learned JavaScript XML will be a lot more useful to you then because you can use it with JavaScript for AJAX.
    Comment by uba November 2008 permalink
  • Is There a Better, Faster Way?

    I code web sites manually myself mostly because I have complete control over every aspect of the web site. But it does take a bit more of my time so I try to use tools that help me code faster Notepad++ is a good code editor but offers not much hel…
    Comment by uba November 2008 permalink
  • learning XML?

    You should certainly look in to learning XML. It is a bit similar to true XHTML and it can come in handy to know it one place or another like building RSS feeds, doing AJAX based development even a small one and even when working with flash.
    Comment by uba November 2008 permalink
  • Webdesigner or UI Designer

    I don’t think that it is necessary but if you can at least understand how it works that will definitely help you in designing better user interface.
    Comment by uba November 2008 permalink
  • Better way to slice images in PHOTOSHOP

    Another way that I use is to use the Photoshop’s Slice Tool and select the slices that I want to cut out then give them names and finely save them for web where I select the image format I want and then hit save. It saves all of the selected slice…
    Comment by uba November 2008 permalink