Grant Wagner
|
Registered User
|
|
Dec 9 |
accepted | Memory Usage |
|
Nov 27 |
awarded | ● Nice Answer |
|
Oct 16 |
awarded | ● Popular Question |
|
Oct 14 |
accepted | IE8 Compatibility View Button is enabled even when IE=EmulateIE7 |
|
Oct 6 |
accepted | What is ? |
|
Oct 5 |
answered | Unable to obtain physical memory informatin using powershell |
|
Oct 5 |
answered | How to generate Word document(doc,docx) in ASP.NET? |
|
Oct 1 |
comment |
What do { and } mean inside params? I won't debate whether it is or isn't a JSON object, but I think it is a bit confusing (to someone new to JS) to mix the language concept of an anonymous object literal ( { a: 1 }) and what you can compose with that language concept (combine those anonymous object literals to create JSON). |
|
Oct 1 |
comment |
Internet Explorer 8: Navigate to users home page @NuSkooler: What you are doing is documented here: msdn.microsoft.com/en-us/library/… |
|
Oct 1 |
accepted | Can JavaScript tell the difference between leaving through the back button or a link? |
|
Sep 30 |
answered | javascript: waiting for an iframe page to load before writing to it (but not from the page that’s triggered the load) |
|
Sep 30 |
answered | JavaScript: get value of dropdown |
|
Sep 30 |
revised |
JavaScript: get value of dropdown added 4 characters in body; edited title |
|
Sep 29 |
awarded | ● Popular Question |
|
Sep 24 |
comment |
10 gig ethernet in Java? +1. It seems likely JSR 203 is what the OP was talking about. |
|
Sep 24 |
accepted | What percentage of browsers have Google’s cached version of JQuery already loaded? |
|
Sep 24 |
revised |
Data storage from JavaScript added 1 characters in body; edited title |
|
Sep 24 |
answered | What is ? |
|
Sep 24 |
comment |
nested quotes in javascript @Scozzard: And what happens if the data contains "? |
|
Sep 24 |
accepted | Problem images firefox |
|
Sep 22 |
accepted | Bing maps - how can I turn off street labels in Bird’s Eye view? |
|
Sep 22 |
accepted | Known issues with gzip and IE6 |
|
Sep 22 |
comment |
Passing hidden field from one page to another in querystring @archana: View > Source of page1.aspx, find the name="the_name" of the field you want to capture, then you can use <script>var clientSideJSVariable = '<%= Request.Form['the_name'] %>';</script> on page2.aspx to assign the value to a client-side JavaScript variable. |
|
Sep 21 |
comment |
Convert kilobytes to bytes in PHP @liori: Actually kb is an Intel kilobyte: xkcd.com/394 |
|
Sep 21 |
revised |
Why would you need a slash at the end of a URL? added 91 characters in body; edited title; deleted 91 characters in body |
|
Sep 21 |
answered | Known issues with gzip and IE6 |
|
Sep 21 |
answered | Form Field Outlining |
|
Sep 21 |
answered | Passing hidden field from one page to another in querystring |
|
Sep 21 |
comment |
Should I accept IE 5.0 (!) as a browser requirement for a project? +1. But use progressive enhancement ( alistapart.com/articles/… , alistapart.com/articles/… and alistapart.com/articles/… ) instead of graceful degradation. Start with a plain HTML and minimal CSS site that works in all browsers, then add more advanced CSS and JavaScript on browsers that support more advanced features. That is a lot easier than starting with an advanced site and trying to make it work gracefully when advanced functionality isn't available. |
|
Sep 21 |
comment |
How can I access iFrame elements with Javascript? @archana: RaYell's answer stackoverflow.com/questions/1451208/… includes a comment from the first time you asked this question. If you do not know the frame id or name, you can use document.frames[0].document.getElementById() (or some other index if it is not the first <iframe> on the page. |
|
Sep 21 |
comment |
How can I access iFrame elements with Javascript? Exact duplicate: stackoverflow.com/questions/1451208 |
|
Sep 21 |
comment |
Is there any advantage to using ‘<< 1’ instead of ‘* 2’ ? +1. Express your intent in your code, don't try to second guess the compiler (unless you've profiled the code and determined that doing it one way or the other makes a significant difference in the performance). |
|
Sep 21 |
comment |
Why null == myVar instead of myVar == null? Duplicate: stackoverflow.com/questions/271561 |
|
Sep 21 |
revised |
How to do an Integer.parseInt() for a decimal number? added 1 characters in body |
|
Sep 21 |
answered | How to check a particular browser add-on is installed or not in IE with javascript/vbScript |
|
Sep 21 |
comment |
“cp --parents” in batch file/VBScript @exalted: If what you need is the relative directories from your current directory to a new location, preserving the paths, then [mjv's answer][stackoverflow.com/questions/1439588/… xcopy /s *.cmd C:\DESTINATION should work as long as you run it in the source directory. If you run it from another directory xcopy /s [source_dir]*.cmd C:\DESTINATION you'll get C:\DESTINATION\[source_dir]\directories_and_files. |
|
Sep 18 |
revised |
Bing maps - how can I turn off street labels in Bird’s Eye view? added 147 characters in body; added 248 characters in body |
|
Sep 18 |
answered | Bing maps - how can I turn off street labels in Bird’s Eye view? |
|
Sep 18 |
answered | Weird spacing issues - IE8 works great, IE6 and IE7 bite |
|
Sep 18 |
comment |
VS 2010 performance problem @anirudha: According to microsoft.com/downloads/… 1024MB RAM is the system requirement for VS2010. Most Microsoft products perform poorly on the stated requirements, I would expect Visual Studio is no different. Check your Total Commit Charge (Task Manager > Performance tab) with VS2010 running. If it is near the amount of physical RAM you have, performance will be degraded. The only solution would be to add more physical memory. |
|
Sep 18 |
answered | Changing URL through html select |
|
Sep 18 |
comment |
Changing URL through html select -1. Don't use eval(). It isn't necessary here and it is really bad practice. blogs.msdn.com/ericlippert/archive/… ... jslint.com/lint.html and others |
|
Sep 17 |
revised |
IIS ping fine but not loading in browser added 126 characters in body |
|
Sep 17 |
comment |
IIS ping fine but not loading in browser @David: The operating system is responding to the ping, it does not mean that IIS is running, or if it is running that it is properly configured. You're probably better off on serverfault where they can help you get IIS running and configured to respond to requests. |
|
Sep 17 |
accepted | add a hash with javascript to url without scrolling page? |
|
Sep 17 |
comment |
How can I shorten a string and later get back the original contents? @Daniel: Depending on the compressibility of the data he could end up with a longer string than he started with. Also there is no guarantee he will get the 5:1 compression he needs to accomplish the task as described. |
|
Sep 17 |
answered | add a hash with javascript to url without scrolling page? |
|
Sep 17 |
comment |
What are the differences between if, else, and else if? +1 for using real-world concepts rather than just placeholders like condition or a, b, etc. |
|
Sep 17 |
comment |
How to turn screensaver on (windows 7) by a code (in cmd)? @system: The C# solution is now a separate answer. I've left this answer as-is in case the cmd or vbs solutions are "good enough" for others asking the same question. |
|
Sep 17 |
revised |
How to turn screensaver on (windows 7) by a code (in cmd)? deleted 1603 characters in body |
