Search Results

2
votes

Calculate user’s time using TimezoneOffset

I'd have to recommend storing all your times in UTC, then also storing the user's timezone offset. This allows for maximum flexibility, and some decent separation between actual data (UTC time) and …
1
vote

Having trouble getting TinyMCE to have an auto-sized width.

Here's a CSS rule for your TinyMCE theme/style file that works for me: .sclSkin table.mceToolbar, .sclSkin tr.mceFirst .mceToolbar tr td, .sclSkin tr.mceLast .mceToolbar tr td { flo …
2
votes

height of page in javascript

Using jQuery (which you did specify), $(document).height() will return exactly what you're asking for. To clarify the usage of the height() method: …
1
vote

Javascript Reference Comprehension

Without the each loop, your function will only operate of the first selected element. While, using each will allow you to manipulate multiple selected elements with a sin …
1
vote

jQuery cloneTo instead of appendTo?

Simply call the clone() method on your selected jQuery object before appending it: $('#button').clone().appendTo('#panel'); If you need to also clone …
1
vote

What is jQuery’s equivalent to Prototype’s Ajax.Responders.register?

Prototype's Ajax.Responders are global listeners that listen to ALL ajax events. jQuery does indeed have an equivalent. The global …
5
votes

Invoking :hover pseudo-class by transferring events via JavaScript

The :hover pseudo-class is not necessarily known for its reliability. Also, there's no way (that I know of) to control its behaviour via Javascript. According to the …
2
votes

Prevent entire php execution on ajax request

A native PHP implementation of Dooltaz's answer would be as follows: function isAjax() { return $_SERVER['HTTP_X_REQUESTED_WITH'] === "XMLHttpRequest"; } This …
4
votes

referencing JS object member without the key

As far as I know, with a Javascript Object (in the literal sense, the object of type `Object) the only way to do this is: for(var i in foo) { var value = foo[i].bla …
1
vote

Round numbers in 15min javascript

Use Math.round instead of Math.floor and everything should be ok-- other than that, your equation for rounding to the nearest n is correct. …