jquery

jQuery Plugin - How does it work?

I have a little problem: I don't knwo how to run this jQuery plugin: http://plugins.jquery.com/project/sound There's no demo available :( ...

How do you disabled a button while a form doesn't validate with jQuery validate?

Hello, I was wondering how you can disable button (not submit) with jQuery while a form doesn't validate with jQuery validate, but when it does validate, enabled the button. ...

div near cursor onclick jquey

I am trying to show a div near the cursor when you click on a span with the id as equipment in jquery and css ...

How to stop event bubbling with jquery live?

Hi I am trying to stop some events but stopPropagation does not work with "live" so I am not sure what to do. I found this on their site. Live events do not bubble in the traditional manner and cannot be stopped using stopPropagation or stopImmediatePropagation. For example, take the case of two click events - one bound to...

Paging Buttons and Re-using Jquery Dialog Boxes

I have a dialog box that has AJAX loaded content. I want to have two buttons on the dialog box: a next and previous, which will load new AJAX content into the dialog box. Is it better to re-use the current dialog box, or destroy it and create a new one? When I've tried re-using the dialog boxes (by updating an internal div wit...

Is it possible to have jeditable popup instead of inline

i have a html table. there are a lot of columns to fit in, many columns are showing images to represent the data. I have been using jeditable to allow users to click on the image and choose from a drop down or enter text into a textbox and update that field (which then renders the appropriate image in the returned content. (works great...

Changing background color of table rows based on click event with jquery

When the document is ready to be manipulated, jquery adds a class to every even row, and another to every odd row, in order to visually see the different rows. But whenever I update (sort based on header) the rows, they don't update no matter what i try. <script type="text/javascript"> $(document).ready( function( ) { $('table ...

How can I parse a URL called between pages in a frameset?

I have a 2-frame HTML page: FrameA contains a list of links to various pages, or anchors within pages FrameB displays the individual pages. Some of the pages contain slideDown sections, with trigger text - i.e. clicking this text shows/hides the slideDown section below it. The parent element of the trigger element also contains an ...

jquery: $(this) question

i want to call a function when i have a textfield focused and then unfocus it (whether i press TAB or click elsewhere with the mouse) and i used this code: $("#settings_view #my_profile_div input").focus(function() { $(this).blur(function() { change_my_profile(); }); }); when i first run it (have a fie...

How to start an AJAX request at a significant pause during user inputting using Jquery?

When a user is inputting something, I need to check user input against the corresponding data in database using AJAX, but I can't continuously check user input against the data in database because that would overwhelm my database server. I just want to start an AJAX request at a significant/obvious/sensible pause during user inputting. F...

looking for jquery form plugin for easy filling form fields

The example ajax form <form method="post"> <input type="text" name="name" /> <input type="text" name="email" /> <select name="group"> <option value="1">group 1</option> <option value="2">group 2</option> </select> <button type="submit">submit</button> </form> each time the form is show an ajax call is sent and the s...

form submitting html content with jQuery

<form id="form1"> <ul> <li>Content</li> <li>Content</li> <li>Content</li> </ul> <input type="submit" value="Submit" /> </form> I want to send the content in the ul tag when clicking the submit button. the submitted data should be <li>Content</li> <li>Content</li> <li>Content</li> How would I write this in jquery and with proper cha...

how would you regex validate a string of mobile numbers?

i need to validate this type of string 0415256987, 0452 654 987, 0411 236589, 0 410 258 987 etc. each number has 10 digits and spaces commas, new line, are allowed. in my project this is a textarea where users enter comma delimited string of mobile numbers. the regex is for the js validation. the spaces and new lines are allowed to...

how to stop 3d carousel on mouse click event.

I use 3d carousel of http://interface.eyecon.ro/demos/carousel.html Anyone suggest me how can i stop this carousel on mouse click event with fix position? ...

How to select following input elements and how to get part of the ID using Jquery?

There are many input elements which IDs are question5,question6, question7 ,..., how to select these input elements using Jquery? I do not mean $('#question5'), I mean to select the group of them. Also How to get the the last number like 5,6,7,... using Jquery? ...

debug, Jquery function does not work

HTML code: The HTML code is dynamically created. <li> <div class="above">What do I like best?</div> <div class="below"> <label>Answer:(1 words)</label> <input id="question6" type="text" size="5"/> <label id="sign6"/> </div> </li> <li> <div class="above">What city do I like?</div> <div class="bel...

jQuery Validate custom success message repeats on recheck.

Hello! (Again) So I have this jQuery Validation plugin, and it has a custom success message. The form validates automatically, because it's attached to the body. The problem comes when I wish to check the variable to see if the form is valid. That revalidates it, which ends up adding an extra success message (image in my case) which is ...

Jquery field clear

All, I have a text area field in my for,.How do i clear contents of it on sum onclick using jquery Thanks. ...

Calling a jQuery Function Even in PostBacks in Asp.Net

Hi All Consider that I have a page with a Button. when it clicks I want to execute a jquery script after the postbacks complete(not befor). I WANT TO DO THAT WITHOUT MS AJAX DOM AND DO THAT JUST WITH ASP.NET AND JQUERY. RegisterStartupScript just works one time. How I can do that? Thanks ...

jQuery: call click(); from another click();

Hi. Is it possible to do something like this $('#idone').click(function(){ alert('we do stuff!'); }); $('#idtwo').click(function(){ $('#idone').click(); }); ... i guess not, but are there any possible workarounds? !UPD: Well, ok. It's a little bit more complicated. I have a jCarousel analog installed - JQueryTOOLS - Scrollable -...