Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #18.7K
Ranked #4K
~3K People Reached
About Me

Did image processing in assembly language in the seventies. Did database consulting in the eighties. Did static websites in the nineties. Did php/mysql in the oughties. Switched to Javascript with C# backend in Jan 2010. I think I'll go for telepathic…

Interests
Tropical rum drinks. Liberal politics.
PC Specs
Macintosh for my use. Linux for my web server.
Favorite Forums

10 Posted Topics

Member Avatar for kavinsac

Yeh, curiosity, professional, blah blah. There is only one skill needed: code. If you want to be a web developer, start doing it. If you like it, keep doing it. You win. If not, you still win, just at another game. When you finish the project you are working on, …

Member Avatar for diafol
0
572
Member Avatar for pro-tek
Member Avatar for tqwhite
0
175
Member Avatar for SAMMY12345

Pick a website for a local store or business. Redesign it. Show that to people you respect. Listen to what they say. If they say, "uh, no. that is really cheesy," forget about it - unless they are wrong. Otherwise, find another store or business and do the same thing. …

Member Avatar for tqwhite
-2
260
Member Avatar for hiyatran

Use jQuery. It is a complete waste of time to use document.writeln() and it doesn't lend itself to dynamic behaviors. eg, html: <tr><td id='demoItem'>blah blah</td></tr> javascript: $('#demoItem').css('background', '#FFFF00'); If you learn to use jQuery, you gain access to a million useful utilities and functions. Go for it!!

Member Avatar for Pnorq
0
164
Member Avatar for u74

I'm with Steve Jobs on this one. Avoid Flash. Any design can be revised to work with standards (Javascript, etc). You can do a lot of very cool animations and appearance frills, especially if you use a decent library. The are few reasons to prefer Flash and the downsides are …

Member Avatar for raju.kona
1
116
Member Avatar for k2k

The php solution is a good one. Another that I have been using lately is to generate the navigation in javascript and, usually with jQuery, insert it into the page. Usually I base it on a sort of site map, an array that represents the structure of the site so …

Member Avatar for k2k
0
111
Member Avatar for jellybeannn

Without analyzing your code, I will tell you that most of the time when I get bad arithmetic on web page input, it is because I 'added' two values I got from the form and the compiler treated them as strings. '12'+'34'='1234', not 46. Explicitly typecast your input values might …

Member Avatar for fxm
0
112
Member Avatar for urbancalli

Draggable doesn't know much about the location that it drags to. Though I suspect that you might be able to traverse the dom to figure it out, a much better solution, I think, would be to add jQuery Droppable to the party. Droppable's "this" refers to the element that received …

Member Avatar for urbancalli
0
112
Member Avatar for johndoe444

These problems have been solved by others. Use jQuery or one of the other javascript libraries. If your interest is primarily the learning process, read the jQuery (or other) source code. Stand on the shoulders of giants.

Member Avatar for johndoe444
0
119
Member Avatar for asf

Without analysing your code, this is the general principal... filePath=$('#picID').attr('src'); pathBitsArray=filePath.split('/') name=pathBitsArray[pathBitsArray.length()]; Or something like that. If you are running in a normal web hosting situation, I think you have to get some backend code to rename files, php or something. If you are trying to do this on your …

Member Avatar for tqwhite
0
1K

The End.