5
votes
7answers
255 views
How would you code this: The SO Announcement bar
I'm a person that learns best from example. Currently, I'm diving into the field of Web Development after fifteen years of developing desktop apps. I'm still getting used to all the web technolog …
1
vote
5answers
194 views
How would you code this: The SO Menu
I'm a person that learns best from example. Currently, I'm diving into the field of Web Development after fifteen years of developing desktop apps. I'm still getting used to all the web technologie …
1
vote
6answers
229 views
How would you code this: The SO highlighted button outline effect
I'm a person that learns best from example. Currently, I'm diving into the field of Web Development after fifteen years of developing desktop apps. I'm still getting used to all the web technologie …
1
vote
8answers
159 views
How is ASP.NET and Javascript related?
Hello! I have another similar question to the one I just asked. I'm currently diving into web development after ten years of desktop development and I'm trying to get a high level grasp on the ma …
0
votes
3answers
503 views
Using javascript to fade a thumbnail image from grayscale to to color
I'm relatively new to web development and wouldn't even know where to start in coding a javascript that fades a grayscale thumbnail image into a color thumbnail image on mouseover, and vice versa o …
4
votes
3answers
130 views
Noobie Jquery Question - Why doesn’t this simple script work?
Hello! I'm learning JQuery and I wrote a simple AJAX external script for my homepage that tries to load some static markup from a seperate html file and insert it into my homepage when i hover ove …
1
vote
3answers
164 views
Built-in browser DOM parsers VS. Javascript framework Parsers
Hello,
I'm diving into javascript and one of the concepts I'm playing with is XML parsing. I see that IE has its own parser, as does Firefox. I also see XML parsers built into some of the …
0
votes
2answers
66 views
Why does this javascript code prevent my browser from ever loading?
Hello. I'm learning javascript and jquery and have written a very basic script inside my file. I'm experiencing two problems...
The browser never finishes loading the document, it j …
1
vote
3answers
76 views
Are CSS styles applied to markup that is added after the page loads?
Hello. I'm learning Javascript and CSS and have run into an issue where my CSS styles aren't being applied to markup that I'm dynamically generated from XML and writing to document after the page …
0
votes
2answers
101 views
Why does this Javascript DOM code only workin FF, but not IE?
//create an instance of the XML parser
if (window.ActiveXObject)
{
//Checking if the browser is IE
xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
xmlDoc.async="false"; //make …
1
vote
5answers
94 views
Javascript variable scope question
Hello! Consider the following piece of code:
<html><head></head>
<body>
<script type="text/javascript">
var outside_scope = "outside scope …
1
vote
5answers
64 views
whats a good tool for finding syntax errors in my javascript code?
I'm trying to use firebug to walk through my code, but there's a syntax error somewhere and firebug is struggling with it. Are there any good tools that will scan my javascript for sytax errors? …
0
votes
3answers
45 views
How do I pass the image object into the onclick function being assigned to it?
Sorry if that question is confusing, I'm self-learning javascript. I'm dynamically generating image thumbnails and I want to be able to enlarge the image when the user clicks on the thumbnails. My …
0
votes
1answer
28 views
how can I get yesterdays date in unix format in javascript?
Hello! I'm self-learning the REST concept and am playing with the Flickr API. One of the parameters that Flickr requires is the min_upload_date, which is formatted in the Unix date f …
0
votes
3answers
48 views
Quickest way to pass data to a popup window I created using window.open()?
I have javascript code to open a popup window using the window.open() function. I'd like to pass data from the parent window to that popup window and I can't seem to find an elegant or simple solu …
