Jump to content

ElanMan

Privileged
  • Posts

    3,279
  • Joined

  • Last visited

Users Experience

  • Experience
    Nothing
  • Area of Expertise
    Nothing

Profile Information

  • Gender
    Male

Recent Profile Visitors

24,596 profile views

ElanMan's Achievements

Web God

Web God (6/6)

56

Reputation

  1. Have a look on opensourcecms.com Loads of alternatives on there and you can try out via the demos too.
  2. No probs, I'm looking forward to tomorrow now
  3. this line: var widgetid = jQuery(".star-dropdown").parent().children(".star-widget-id").val(); should be: var widgetid = jQuery(this).parent().children(".star-widget-id").val(); In your original code,in the event handler, you're finding all of the selects with a class of 'blah'. Simply put, it means you're working with the first select on the page(no matter what select has changed) You don't want all of the selects with a class of blah, just the one that has the change event fired. jQuery(this) inside an event handler will refer to the element that was 'clicked', 'changed' etc. This means that when the function traverses the DOM to find the parent etc, it will start from the relevant select, not from the first one on the page.
  4. If you want to position C relative to B, then you will need to specify a position other than static (the default) to C.
  5. If B is positioned absolutely, C will take its positioning relative to B 's top left corner
  6. Happy birthday to you, happy birthday to you, happy birthday dear 'India PHP Expert ', happy birthday to you! WTF

    1. DigitalSquid

      DigitalSquid

      Their father, India PHP Master sends his love.

    2. MikeChipshop

      MikeChipshop

      Unfortunately 'India PHP quality' died at birth...

    3. ElanMan
  7. Interesting article today: Flash May Not Be Dead But It's Not Feeling Well
  8. If you're just checking for the presence of a number: if (/\d/.test(firstname)) { alert("Ooh, you put a number in your firtname. How do you pronounce that you mofo?!"); }
  9. Go for it fellas! After smoking for 19 years, I gave up 4 months ago. If I can do it (approx 25/30 a day), I'm pretty sure you can. It's the best thing you'll ever do Good luck
  10. Have you looked at MediaWiki? Or am I completely missing what you're after?
  11. Which part are you struggling with? It's a long time since I used phpFlickr but iirc, it was fairly simple to set up. Post the code that isn't working.
  12. Can you set up the services to only allow access based on hostname instead of ip address? If so, a free service like dyndns might be suitable (although I'm buggered if I can find the free service on their site!)
×
×
  • Create New...