|
Feb 20 |
comment |
Setting iso-8859-1 instead of utf-8 in oscommerce / sts template website? forums.oscommerce.com/lofiversion/index.php?t105082.html Check the last two posts on that page and see if they help. |
|
Apr 5 |
comment |
Simple form not working anymore, since adding jquery tablesorter on same page Could we see the jQuery you're using to initialize the tablesorter? |
|
Mar 21 |
comment |
Complex regex question, data may or may not be in brackets Why not explode() it into tokens by semicolons and then look at each token individually, matching for parentheses before the first number and then accordingly using a regular expression to separate the data you need? It might be a little easier to work with than a regular expression. |
|
Aug 16 |
comment |
vertical Menu functunality with jQuery I believe that's correct. :) |
|
Aug 14 |
comment |
vertical Menu functunality with jQuery My mistake. I was looking at the relationship between the <dt> and the <dd> for some reason. Glad you figured it out though :) |
|
Aug 12 |
comment |
How can I maintain control of the this keyword when extending prototypes in jQuery? When I copied the OP's code, I forgot to remove the comment. My mistake. |
|
Jul 29 |
comment |
Image animation keeps requesting the images Question -- Why do you never increment cornerno inside the imganimate() function? You'll never move to the next image. |
|
Jul 21 |
comment |
How to enclose text patterns within xml elements, except when it is already inside a certain xml element? I didn't test this, so I'm putting it in the comments --- if the data format is uniform, why not use a lookahead/lookbehind? Something like this: (?<!(="))({[A-Za-z0-9]*})(?!") |
|
Jul 21 |
comment |
jQuery equivalent to Prototype array.last() I agree with Ken. Plus, does that look better than: $('a').attr('href').split('#')[$('a').attr('href').split('#').length-1], haha. |
|
Jul 21 |
comment |
Which keycode for escape key with jQuery $(document).keypress(function(e) { y=e.keyCode?e.keyCode:e.which;}); When I alert(y), it alerts 27 in IE and FF. Are you sure there's not something else wrong with your code? |
|
Jul 21 |
comment |
How to get all images with src not empty? I was actually wrong, haha. I thought that too Pim -- I just tried it, but if you do that, it'll select elements like this as well: <img src="" /> Which is obviously not the best. This works though, according to some testing: $("a[rel!='']") |
|
Jul 20 |
comment |
Table-less form layout Try wrapping the content block you want to be red in a div (like you said) and then adding the style border-color:red!important; to all divs within that div. :) |
|
Jul 20 |
comment |
Table-less form layout Thanks Chetan. I always do that. :( I don't understand, batman. Could you possibly make an image of it? |
|
Jul 20 |
comment |
Table-less form layout Good point. Edited :) |
|
Jul 20 |
comment |
Will jQuery safely evaluate a JSON response to a HTTP POST? Haha, I copied from the exact same feature request. Great minds think alike :P |
|
Jul 20 |
comment |
Syntax error in CSET library cset_production.js, and cset_source.js (from the same site). I opened the javascript console and ran both and didn't find any errors. My chrome installation is a beta, however...maybe that could be affecting it? |
|
Jul 20 |
comment |
Syntax error in CSET library When I ran that in google chrome, it returned an Object and didn't error out at all. |
|
Jul 19 |
comment |
Best practice: loading rendered html or json? OrbMan is correct. :) |
|
Jul 16 |
comment |
jQuery fade stop error: jQuery(“.box”).stop().fadeIn(); What is the error you get? |
|
Jul 16 |
comment |
Why isn't the two dimensional array in Perl printing correctly? Sorry about that. I clicked the link but then switched to another tab and confused myself. :P |