Scott Evernden

7,180
Reputation
580 views

Registered User

Name Scott Evernden
Member for 1 year
Seen 16 mins ago
Website
Location Boston
Age

30+ years programming everything. Virtual environments is my current passion. User-interface design and human-facing applications has been my main focus for well over 25 years.

I have specific experience in 2D and 3D graphic applications with many assorted projects dating all the way back to my days at Media Lab. Recently I've been involved with new work utilizing Papervision3D, Alternativa3D, and the Torque Game Engine. And most recently I have been getting up to speed with the Unity 3D engine.

Technologies I use every day and consider myself expert at include javascript & jQuery, PHP & Drupal, and AS3 & Flex.

1h
comment Replacing fields with jQuery
you do know that $ == jQuery ?
1h
answered Replacing fields with jQuery
1h
answered Ajax request with JQuery on page unload
17h
accepted How to Limit DOM interaction to an element and its children?
1d
comment jQuery, remove item from middle of list, then refresh list?
Please refer to artzstudio.com/2009/04/…
1d
comment jQuery, remove item from middle of list, then refresh list?
well I hate to break it to you, but your opinion is wrong. A bare #id without context is THE FASTEST selector that jQuery offers since it maps directly into getElementById() - there is no traversing when you supply an #id. By supply $last as a context you are actually slowing the selector down.
1d
comment jQuery: snapped scrolling - possible?
If I was doing this, I'd let the table scroll the way it wants but after the button is released I would $().animate() scrolltop up or down to the whole-row position you want
2d
accepted syntax error, unexpected ‘<’
2d
answered syntax error, unexpected ‘<’
2d
answered jQuery, remove item from middle of list, then refresh list?
2d
answered jQuery: snapped scrolling - possible?
2d
accepted jQuery Complex selector with mid-wild card?
2d
revised jQuery Complex selector with mid-wild card?
added 243 characters in body
2d
answered jQuery Complex selector with mid-wild card?
2d
answered AJAX Controlled Multiple Select Box Strategy
2d
accepted adding fade to jquery image replacement
Nov
26
answered action after a delay
Nov
26
answered Multiple callback on $.get
Nov
25
comment Creating Javascript object from JQuery object
$(selectedElement).innerText is invalid code .. $(selectedElement) is a wrapped set/array of objects .. innerText is not a property of that .. use $(selectedElement).text()
Nov
25
revised adding fade to jquery image replacement
added 15 characters in body
Nov
24
accepted How to emulate the look of an off-white sheet of paper on a computer screen
Nov
24
answered adding fade to jquery image replacement
Nov
24
answered How to emulate the look of an off-white sheet of paper on a computer screen
Nov
24
comment Replace Symbols with jQuery
can you maybe give an example because there are a few interpretations of your question / not sure if you mean the <body> tag itself or the entire body innerHTML
Nov
22
comment AS3 actionscripting
kinda confusing what is where, what you have control of, and what you don't .. are you in control of the flash code only ??
Nov
22
accepted Check if string contains only digits
Nov
22
answered Check if string contains only digits
Nov
22
comment What does this code-snippet do?
haha .. depends on how you define prime!
Nov
22
comment CSS rule based on content
ah yes i didn't catch that nuance .. i can see why it makes sense however (maybe) . thanks for spotting that
Nov
22
comment What does this code-snippet do?
i think this is the best answer
Nov
22
comment What does this code-snippet do?
what i mean is its buggy -- if 2 characters were changed [ "for(int i=3;i<sqrt(n)+0.5;i+=2)" was edited to "for(int i=2;i<sqrt(n)+0.5;i+=1)" ] it would correctly identify prime numbers
Nov
22
comment Good books on Software Engineering for web apps?
you need to refine what you want to learn .. just saying 'web apps' is a huge wide endless topic. includes .NET, ruby, java, javascript, google friends, facebook connect, C#, canvas, html, jQuery, css, mySQL, postgreql ... etc etc ETC!.... about 30% of the tags listed on SO I would venture .. you want some sort of global overview ??
Nov
22
answered CSS rule based on content
Nov
22
answered What does this code-snippet do?
Nov
22
comment jQuery Hover Problem - Hover Triggers on Mouse Move
what browser?. Seems to work fine in Chrome, FF3 and IE8 (tho IE8 needs a look at)
Nov
21
answered Measuring online time on website
Nov
21
answered PHP check to see if a string matches a pattern
Nov
21
comment What Site is a Good Example of JQuery
the best way to learn jQuery is probably NOT by looking at a random web sites and trying to figure out what's going on. most sites do not use most of jQ's features . better to get some tutorials and books and learn the foundation - how it's built and works .. in fact . i daresay .. one great way to learn jQ is to carefully and purposefully work thru its implementation , jQ's source code !
Nov
19
answered Open Source PHP script for HTTP video streaming?
Nov
19
answered Could you show me a site where ajax-driven country-region-city drop down list is used?
Nov
19
comment Javascript closure / variable scope question - I know it works, but why?
dup of stackoverflow.com/questions/111102/… and others
Nov
19
answered Highlighting the “current” textbox on a web form
Nov
19
answered basic question in foreach in php
Nov
19
answered scrape ASIN from amazon URL using javascript
Nov
19
comment retrieving $_GET variable in jquery
"I have a div, "currLeader" in topic.php into which I load another page, getCurrLeader.php. " - where does this happen? on server or back in the browser?
Nov
18
answered Position An Injected DIV Using JQuery’s “Load” Function
Nov
18
comment How do I select more than one element using the jQuery attribute selector
are you maybe forgetting to include the jquery script library ?
Nov
18
comment How do I select more than one element using the jQuery attribute selector
my answer and $('span[id$=Me], input[id$=Me]') both DO work with your example code. you're leaving something out of your question
Nov
17
answered How do I select more than one element using the jQuery attribute selector
Nov
17
revised Showing/Hiding a DIV based on one or more checkbox/radiobox selections?
edited body; deleted 12 characters in body; added 50 characters in body; deleted 31 characters in body