1
vote
Safe feature-based way for detecting Google Chrome with Javascript?
So, if you accept Marijn's point and are interested in testing the user agent string via javascript:
var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > …
0
votes
How would you implement auto-capitalization in JavaScript/HTML.
You pose an interesting question. Acting upon each key press may be more limiting because you will not know what comes immediately after a given keycode (the complexity of undoing a reaction that t …
0
votes
Firebug - how can I run multiline scripts or create a new JavaScript file?
What about this idea:
Assuming your page can already have script tags that reference jQuery and a …
2
votes
Pass a PHP string to a Javascript variable (including escaping newlines)
Explanation and online testing of escaping client-side and server-side (Javascript / PHP):
JavaScrip …
0
votes
Pass a PHP string to a Javascript variable (including escaping newlines)
function escapeJavaScriptText($string)
{
return str_replace("\n", '\n', str_replace('"', '\"', addcslashes(str_replace("\r", '', (string)$string), "\0..\37'\\")));
}
…
1
vote
Proper IE6 HTML element dimensions
This may help the cause ...
From http://andylangton.co.uk/article …
1
vote
Match Regex with Javascript
It's not clear what the general case is (the specific in your example is "5"). If you're trying to extract the last segment of the URI path, you can achieve it without employing a regex:
Us …
2
votes
Prevent js alert() from pausing timers
It's modal and stops execution. Consider an alternative which does not pause execution like a Lightbox technique.
…
1
vote
Prevent js alert() from pausing timers
The feedback loop on SyaZ's question has clarified the issues at stake.
Here's an attempt to summarize the good answers so far:
Client scripts are by nature are easy to man …
1
vote
2
votes
What’s your favorite Prototype framework compatible, javascript date picker?
jQuery's UI.DatePicker
(Prototype compatible via JQuery.noConflict())
…
2
votes
Could a website force the browser to go into fullscreen mode?
Open a new window in full screen mode on IE:
<script>
<!--
window.open("page.html","fs","fullscreen,scrollbars")
//-->
</script>
Putting in a "Cl …
2
votes
What is the best way to determine if a function exists in Javascript
SEE http://stackoverflow.com/questions/88485/tell-if-a-javascript-function-is-defined- …
0
votes
Dynamically Set the Height of Two floated DIVS
Using jQuery:
$("#dvRightContent").bind("resize", function(){
$("#dvLeftContent").css('height', $("#dvRightContent").css('height'));
});
…
3
votes
firefox/IE designMode reference needed
Converting an app using document.designMode from IE to Mozilla.
…
