blah blah blah is here! blah blah » Close

0
votes
1 answers

How can I clear all form elements using jQuery?

Rick_A
761

If a button is pressed, I want to clear out (blank out) all form element values. There are textboxes, textareas and dropdown list elements in the form.

0
votes
3 answers

How to select a specific radio button that are grouped with same name using jQuery?

Rick_A
761

I have multiple radio buttons that all have the same name, so that only one can be selected at a time. [code]<input type=radio name=abc value=123/> <input type=radio name=abc value=345/>[/code] Using jQuery, how can I sel ...

0
votes
2 answers

Using jQuery, how can I select an item in a drop down list?

Rick_A
761

I have a drop down list, and I also know the ID value of one of the options in the select list. How can I select the specific option with the value? [code]<select id=mydropdown> <option value="101">Some option ...

1
votes
2 answers

How to get the ID of the element clicked using jQuery?

Rick_A
761

I want to get the ID of the element that was clicked. I have a class for all elements I want to monitor, so I have: [code]$(".someclass").bind("click", function() { });[/code] Now I want to get the id of ...

0
votes
0 answers

Is it possible to change the default location of jquery ui's image folder?

Rick_A
761

My application has a different location for its images folder, and I want to put jquery ui related images as a sub folder to my main images folder. is this possible?

2
votes
1 answers

Using jquery, I want to select all objects that have the class bcblue

Just getting used to jQuery. I want to select all the objects in the DOM that have a class named bcblue on my web page. I then want to loop through each element and modify them. How can I select these items?

Feedback