Top "Jquery-selectors" questions

Selectors can be used in jQuery to match a set of elements in a document.

Is there a wildcard selector for identifiers (id)?

If I have an unknown amount of identifiers sharing a specific naming-scheme, is there a way to grab them all …

jquery jquery-selectors wildcard
How do I get jQuery to select elements with a . (period) in their ID?

Given the following classes and controller action method: public School { public Int32 ID { get; set; } publig String Name { get; set; } …

javascript jquery jquery-selectors
Hide all but $(this) via :not in jQuery selector

Advanced title, simple question: How can I do the following in jQuery (hiding everything except $(this))? $("table tr").click(function() { $("…

jquery jquery-selectors this
"All but not" jQuery selector

I can select (using jQuery) all the divs in a HTML markup as follows: $('div') But I want to exclude …

javascript jquery jquery-selectors
Jquery, How to unselect all radio button in radio group

Anyone know how to unselect all radio buttons in a radio group ? HTML: <div id="emptimfields"> <label …

jquery html jquery-mobile jquery-selectors
jQuery equivalent for window.document.write

Does anyone know the jQuery equivalent for window.document.write('') in javascript? Thanks

javascript jquery jquery-selectors javascript-framework
Element or class LIKE selector for jQuery?

For whatever reason I have these classes called .main_sub1, .main_sub2 etc. Never mind why I can't have .main .…

jquery jquery-selectors sql-like
jQuery dot in ID selector?

Possible Duplicate: How to select html nodes by ID with jquery when the id contains a dot? I have a …

jquery jquery-selectors
jQuery: Select data attributes that aren't empty?

I'm trying to select all elements that have a data-go-to attribute that is not empty. I've tried $('[data-go-to!=""]') …

javascript jquery jquery-selectors custom-data-attribute
Is there a case insensitive jQuery :contains selector?

Is there a case insensitive version of the :contains jQuery selector or should I do the work manually by looping …

javascript jquery jquery-selectors