Search Results

0
votes

How do you write Valid XHTML 1.0 Strict code when you are using javascript to fill an element that requires a child?

This might not be the most popular opinion on this topic, but... Don't worry about 100% validation. It's just not that big of a deal. The point of validation is to make your markup …
-2
votes

onbeforeunload support detection

It would probably be better to just find out by hand which browsers support it and then have your conditional more like: if( $.browser.msie ) { alert( 'no' ); } …
0
votes

“Stop running this script?” error

You just have some long running script/infinite loop in your code. More details might get a more precise answer. If your page is using lots of intervals then you'll want to cancel them befo …
0
votes

Javascript: How do I skip items when tabbing without using tabindex?

If it's always going to be the input after the calendar then why not: $('#your-calendar-icon').focus( function() { $(this).next('input').focus(); ); Personally, …
1
vote

Not allowing javascript function call from the address bar

You have to handle this on whatever back-end you've got accepting the request. Assuming you only give the user the option to doSomething() upon certain conditions, you probably have th …
0
votes

Any In-place Javascript Rich Text Editor available?

Can you not just use TinyMCE (/whatever), size it smaller, attach some jQuery event handlers to the text and replace it with the editor when appropriate. …
1
vote

How do I add a class to a given element?

Assuming you're doing more than just adding this one class (eg, you've got asynchronous requests and so on going on as well), I'd recommend a library like …
2
votes

How to create a jquery function to set max-height on every div?

You might try looking for an existing solution (jQuery has an immense plug-in community): At …
0
votes

jQuery mouseover issues

Probably the simplest solution would be to put the fade-out transition handler on body and the fade-in as you have it now. This way the mouseout event that you're getting wont …
0
votes

Jquery queueing animations

Check out the documentation for jQuery Effects. The stuff about …
1
vote

Jquery animate problem..

The way jQuery does it's animation is that it periodically updates inline CSS attributes. If the elements you're changing style's of are floated or have other complex interactions with the other el …
0
votes

Javascript popups, can I reference all js on the parent page like normal?

Javascript popups are independent windows but they can refer to their owner via: window.owner …
3
votes

Programming Challenge using jQuery

This is a terrible idea, but since you seem to already know that, here's the code: $(".button").each( function() { var width, height, color, icon; $.each( $(this).attr('class'). …
4
votes

jQuery.get() - Practical uses?

Sometimes you're using jQuery in noConflict mode and you want to do something like: var element = jQuery('#jquery_selectors .are > .awesome[and=fast]').get(0); …
4
votes

Help! TinyMCE is reformatting my code!

You're specifying the format as xhtml and divs cannot be self-closing -- that's why it's fixing it for you. If you want it to be exactly as you say then you'll need to cha …

1 2 next
15 30 50 per page