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

BaylorRae

  • Slider Loading Issue

    Try giving .panelContainer overflow hidden.
    Comment by BaylorRae November 2009 permalink
  • Add url to textfield

    Okay, here's an update. // View the demo http://jsbin.com/unose // View the demo's code http://jsbin.com/unose/edit I only changed two things. 1.) The button now has the attribute 'value' (e.g. value="http://some-url.com&…
    Comment by BaylorRae November 2009 permalink
  • Add url to textfield

    This effect is easy with jQuery. Here's a working example http://jsbin.com/uvuve3 And you can see the code here http://jsbin.com/uvuve3/edit I've added a few comments to the jQuery, but if you want me to explain in more detail just ask.…
    Comment by BaylorRae November 2009 permalink
  • Change color of a Label

    If you're using jQuery it's really easy. $('input').focus(function() { $(this).prev('label').css('color', 'green'); }).blur(function() { $(this).prev('label').css('color'…
    Comment by BaylorRae October 2009 permalink
  • IE-Stylesheet Conditional Comment in PHP document

    You don't need to put your response in a variable. Use an if to make sure the email sent correctly and save a true or false in a variable. So later in your page you can use php to find out if the email sent and give a message to the user. …
    Comment by BaylorRae October 2009 permalink
  • IE-Stylesheet Conditional Comment in PHP document

    You shouldn't use PHP to add the links to your style sheets. Your should just have this. Page Title Perhaps I don't fully understand your question, but this isn't a problem with PHP.
    Comment by BaylorRae September 2009 permalink