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 …
2
votes
Loop through input items onchange with jQuery
Your problem is almost certainly:
.$(":input")
That doesn't make sense. You're trying to call the $(":input") method on whatever .get(0) …
1
vote
Submit form using AJAX and jQuery
First give your form an id attribute, then use code like this:
$(document).ready( function() {
var form = $('#my_awesome_form');
form.find('select:first').change( …
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.
…
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 …
2
votes
jquery: hide/show something after form submit/page reloads
You can assign a handler to the 'submit' action of a form and do whatever you like with it. Send it asynchronously, remove the form again, leave it there, whatever. Here's a starting point:
…
7
votes
Apply a red border to all images hosted on CDN with jQuery
How about something simple like using the attribute*= selector:
$(documen …
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
Are there side effects to using string concatenation or jQuery inside jquery selectors?
Yep no reason you can't do this. Since $ is actually a function call itself anything that needs to be evaluated in order to pass a parameter to it is evaluated first.
…
2
votes
Does jQuery have it’s own OOP syntax the way that Mootools does?
jQuery is much more focused on a functional style of programming (like JavaScript itself). Personally I find that tacking on 'traditional' OOP features is ugly and pointless. There's plenty of ways …
0
votes
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
How does $(document).ready() work in IE 8?
In addition to what others have said, you're also missing the </html> at the end of the document. Maybe just a copy/paste error :)
…
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'). …
0
votes
jquery masked input
Looks like that's possible... Did you try? Can you explain the trouble you had?
…
