active questions tagged selector - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T09:01:17Z http://stackoverflow.com/feeds/tag/selector http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1846228/jquery-using-variables-in-selectors 0 jQuery: Using Variables in Selectors Norbert 2009-12-04T10:55:22Z 2009-12-04T11:41:58Z <p>Every searches I made only included solutions for variables like this: $('#div'+ id)</p> <p>I need to delete a row.</p> <pre><code>var row = $(this).parent().parent().parent().find('tr#' + id).html(); </code></pre> <p>I'd like to use the "row" name instead of "$(this)...remove();"</p> http://stackoverflow.com/questions/1827482/jquery-find-next-prev-elements-of-a-certain-class-but-not-necessarily-siblings 0 Jquery find next/prev elements of a certain class but not necessarily siblings Gnuffo1 2009-12-01T16:52:55Z 2009-12-03T06:11:43Z <p>The next, prev, nextAll and prevAll methods are very useful, but not if the elements you are trying to find are not in the same parent element. What I want to do is something like this:</p> <pre><code>&lt;div&gt;&lt;span id="click"&gt;hello&lt;/span&gt;&lt;/div&gt; &lt;div&gt;&lt;p class="find"&gt;world&gt;&lt;/p&gt;&lt;/div&gt; </code></pre> <p>When the span with the id "click" is pressed, I want to match the next element with the class "find", which in this case is not a sibling of the clicked element so next or nextAll won't work.</p> http://stackoverflow.com/questions/1834049/jquery-custom-selector-with-colon 0 jquery custom selector with colon k0ni 2009-12-02T16:24:27Z 2009-12-03T05:59:05Z <p>I need a function to select all elements with a custom attribute, and take its name and value. for example:</p> <pre><code>&lt;input type="text" my:name="koni" my:age="20" my:city="New York" /&gt; </code></pre> <p>Note that my is always the same, but that behind not. in my function i then want to say:</p> <pre><code>var attr = //here should be the attribute (attr, or attr2) </code></pre> <p>and</p> <pre><code>var value = //here should be the value (test, or hello) </code></pre> <p>how can i make that?</p> <p>Edit: sorry, forgot to paste the html.</p> <p>i want to loop throu each input that has such custom my attributes, and get the value and the key in an array. for this example, i should have:</p> <p>key = name, value = koni</p> <p>and</p> <p>key = age, value = 20</p> <p>...</p> http://stackoverflow.com/questions/1806190/jquery-selector-question-parent 2 jQuery: selector question (parent) Fuxi 2009-11-26T23:58:07Z 2009-11-27T00:00:28Z <p>hi all,</p> <p>i'm having this markup:</p> <pre><code>&lt;ul class=container&gt; &lt;li rec=1&gt; &lt;div&gt; &lt;div&gt; &lt;div&gt;i'm here&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/li&gt; &lt;/ul&gt; </code></pre> <p>now i'm at the div element ("i'm here"), how can i get reference to the li? i tried <code>div.parent("li");</code> but didntwork ..</p> http://stackoverflow.com/questions/1797205/jquery-get-certain-element-from-selector 2 jQuery: get certain element from selector Fuxi 2009-11-25T14:22:28Z 2009-11-25T14:26:27Z <p>i searched the docs and couldnt find it :(</p> <p>let's say i'm selecting all elements like:</p> <pre><code>var items = $(".myClass"); </code></pre> <p>it returns eg. 5 items - now how can i grab select eg. the 2nd one? items(2) or items[2] doesnt work ..</p> http://stackoverflow.com/questions/1792075/another-jquery-not-selector-question 0 Another jquery :not selector question.... yonation 2009-11-24T18:44:20Z 2009-11-24T18:49:55Z <p>The :not always gives me such headache. I am trying to not repeat an addition of plus sign. This is the selector that gives me the element I want:</p> <pre><code>#submenu li.current_page_ancestor.current_page_parent a:first </code></pre> <p><strong>Basically I want to say that if that selector does NOT already have a plus in front of it, add it</strong>. But where do i put the :not and the various contains? I've tried this, which didn't work:</p> <pre><code>$j('#submenu li.current_page_ancestor.current_page_parent a:first:not('contains("+")')).prepend("+ "); </code></pre> <p>thanks so much! (also, if anyone can recommend a way to not use :not, and use ! instead, that would be spectacular!)</p> http://stackoverflow.com/questions/1592855/cucumber-webrat-follow-link-by-css-class 2 Cucumber/Webrat: follow link by CSS class? Joe 2009-10-20T06:48:58Z 2009-11-24T17:35:13Z <p>Hello there,</p> <p>is it possible to follow a link by it's class name instead of the id, text or title? Given I have (haha, cucumber insider he?) the following html code:</p> <pre><code>&lt;div id="some_information_container"&gt; &lt;a href="edit" class="edit_button"&gt;Translation here&lt;/a&gt; &lt;/div&gt; </code></pre> <ul> <li>I do not want to match by text because I'd have to care about the translation values in my tests</li> <li>I want to have my buttons look all the same style, so I will use the CSS class.</li> <li>I don't want to assign a id to every single link, because some of them are perfectly identified through the container and the link class</li> </ul> <p>Is there anything I missed in Cucumber/Webrat? Or do you have some advices to solve this in a better way?</p> <p>Thanks for your help and best regards,</p> <p>Joe</p> <p><strong>edit:</strong> I found an interesting discussion going on about this topic right <a href="https://webrat.lighthouseapp.com/projects/10503/tickets/195-click%5Flink-using-title-and-classes" rel="nofollow">here</a> - seems to remain an open issue for now. Do you have any other solutions for this?</p> http://stackoverflow.com/questions/1775176/jquery-selector-question 0 jQuery selector question andreeib 2009-11-21T11:09:06Z 2009-11-23T12:15:04Z <p>Hi,</p> <p>I have a unordered list like the one below:</p> <pre><code>&lt;ul id="tabs"&gt; &lt;li&gt;&lt;a href="#tab1"&gt;latest news&lt;/a&gt;&lt;/li&gt; &lt;li class="active"&gt;&lt;a href="#tab2"&gt;latest posts&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#tab3"&gt;latest posts&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#tab4"&gt;latest posts&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>I can't find a jQuery selector that gets the next list item from the one whith the .active class, so if .active is the second one the jQuery selector will give me the third list item.</p> <p>Thank's</p> http://stackoverflow.com/questions/1580635/c-html-css-selector 0 C# html/css selector Dave 2009-10-16T21:51:57Z 2009-11-19T14:53:37Z <p>Hello,</p> <p>I'm wondering if there's a jQuery-like css selector that can be used in C#.</p> <p>Currently, I'm parsing some html strings using regex and thought it would be much nicer to have something like the css selector in jQuery to match my desired elements.</p> <p>Let me know if I'm not too clear on the subject.</p> <p>Thanks</p> http://stackoverflow.com/questions/1399064/using-jquery-how-to-find-out-if-css-selector-inputtypetext-is-natively-supp 3 Using jQuery, how to find out if CSS selector "input[type=text]" is natively supported by browser? Jesper Rønn-Jensen 2009-09-09T11:19:48Z 2009-11-18T20:58:02Z <p>In my CSS I have a rule that must be applied to all text fields (using the CSS3 selector <code>input[type=text]</code>.</p> <p>I also use <a href="http://en.wikipedia.org/wiki/JQuery" rel="nofollow">jQuery</a>. Some browsers like Internet Explorer 6 does not support that form for CSS selector. So my workaround is to add an extra classname in CSS:</p> <pre><code>input[type=text], .workaround_classname{ /* css styling goes here */ } </code></pre> <p>And via jQuery then add the CSS class:</p> <pre><code>$('input[type=text]').addClass('workaround_classname'); </code></pre> <p>The Question is: How do I make sure this rule only is invoked when CSS3 selectors are not natively supported?</p> http://stackoverflow.com/questions/1730609/using-jquery-not-selector-to-exclude-elements-with-particular-children 1 using jQuery NOT selector to exclude elements with particular children. DA 2009-11-13T17:05:16Z 2009-11-13T18:28:29Z <p>I have a function that appends some HTML to an element. It may get called more than once, so I only want it to append the HTML to elements that haven't already had the HTML added.</p> <p>Example:</p> <pre><code>&lt;div class="divToAppendTo"&gt;&lt;/div&gt; &lt;div class="divToAppendTo"&gt;&lt;span class="myAppendedMarkup"&gt;&lt;/span&gt;&lt;/div&gt; </code></pre> <p>As such, I'd like to select all .divToAppendTo that don't have an immediate child of .myAppendedMarkup</p> <p>My stab at it doesn't seem to work:</p> <pre><code>$(".divToAppendTo:not(&gt;span.myAppendedMarkup)") </code></pre> <p>It always appends when I call it (thereby duplicating the content). </p> http://stackoverflow.com/questions/1590282/fbml-multi-friend-selector-in-fbdialog 0 FBML multi friend selector in fb:dialog Jugs 2009-10-19T18:22:42Z 2009-11-11T20:02:09Z <p>Hey Guys,</p> <p>Is there a way to show the multi friend selector widget (fb:multi-friend-selector) in an fb:dialog?</p> <p>I have a button, on selecting which I would like to show the friend selector popup and users can send invite to their friends. I got the friend selector working on the main page but have no clue on how to display that widget in fb:dialog.</p> <p>Thanks Jugs</p> http://stackoverflow.com/questions/1704593/jquery-html-attribute-how-to-exclude-an-elements-childs-html-from-that-elemen 0 Jquery html attribute : How to exclude an element's child's html from that element's html. Patrice Paquette 2009-11-09T23:10:36Z 2009-11-09T23:21:50Z <p>Code snippet :</p> <pre><code>&lt;div id="some_text"&gt; &lt;p&gt;some text&lt;/p&gt; &lt;div id="child"&gt; &lt;p&gt;some other text&lt;/p&gt; &lt;/div&gt; &lt;/div </code></pre> <p>How can I only get "<code>&lt;p&gt;some text&lt;/p&gt;</code>"?</p> http://stackoverflow.com/questions/1693747/jquery-selector-help 1 jQuery selector help ? unknown (yahoo) 2009-11-07T17:15:59Z 2009-11-07T17:59:41Z <p>How to anchor paragraph in other HTML pages and in the same time highlighted the area where the pointed paragraph is located when click the the button in the current page?</p> <p>I made this simple code in JavaScript just doing the anchor thing</p> <p>Current page:</p> <pre><code>&lt;html&gt; &lt;form&gt; &lt;input type=button value="open in new tab" onClick="goToURL2()"&gt; &lt;/form&gt; &lt;body&gt; &lt;script type="text/javascript"&gt; &lt;!-- function goToURL2() { window.open( "explanations.html#footwell"); } // --&gt; &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>New page:</p> <pre><code>&lt;html&gt; &lt;p&gt;&lt;a name="footwell"&gt; O, say can you see by the dawn's early light? &lt;/a&gt;&lt;/p&gt; &lt;/html&gt; </code></pre> <p>I think that "highlighted text" jQuery will be the best method but can't figure out how to do it with more than one html page.</p> http://stackoverflow.com/questions/1677808/jquery-tricky-selector-question 1 jquery: tricky selector question Fuxi 2009-11-05T01:33:54Z 2009-11-05T03:39:11Z <p>hi i'm having this markup:</p> <pre><code>&lt;div id="main"&gt; &lt;div nam="item"&gt;1&lt;/div&gt; &lt;div nam="item"&gt;2&lt;/div&gt; &lt;div&gt; &lt;div nam="item"&gt;3&lt;/div&gt; &lt;div nam="item"&gt;4&lt;/div&gt; &lt;div nam="item"&gt;5&lt;/div&gt; &lt;/div&gt; &lt;div nam="item"&gt;6&lt;/div&gt; &lt;div nam="item"&gt;7&lt;/div&gt; &lt;/div&gt; </code></pre> <p>i'm now selecting only the direct child divs by using this method:</p> <pre><code>var divs = $("#main &gt; [nam]" </code></pre> <p>my question - i want to do this inside a function where i only pass the parent div, how would i need to change the selector?</p> <pre><code>function get_rootChildren(div) { return($("* &gt; [nam]",div)); } </code></pre> <p>^ this is bogus but i think u know what i mean - how could this be done? thx, fuxi</p> http://stackoverflow.com/questions/1668219/jquery-elementattributesomething-vs-element-class-performance 0 jQuery element[attribute=something] vs element.class performance SeanJA 2009-11-03T15:54:29Z 2009-11-03T16:02:12Z <p>I am wondering which way would end up being faster, selecting elements by:</p> <pre><code>$('element[href=#my_link]'); </code></pre> <p>or:</p> <pre><code>$('element.my_class'); </code></pre> <p>I don't like repeating myself when I write code, so I prefer to write it the first way for the most part because then I can add information to it like:</p> <pre><code>&lt;a href="#delete_1"&gt;Delete&lt;/a&gt; $('a[href^=#delete]'); </code></pre> <p>and then split it up so that I have all of the information that I need once it is clicked, or whatever the action may be. Am I sacrificing overall performance because of this?</p> <p>(I guess I could rewrite it as class="delete" href="#1")</p> http://stackoverflow.com/questions/1658085/jquery-find-not-working-for-first 0 jQuery Find not working for :first Nic Hubbard 2009-11-01T19:31:51Z 2009-11-01T19:39:49Z <p>I am trying to find some child a elements within a ul parent. But, I need to only find the first a. Here is what I am using</p> <pre><code>$('div.item a').click(function() { $(this).parent().next('ul.subItems').find('a:first').addClass('selected'); }); </code></pre> <p>HTML:</p> <pre><code>&lt;div class="item"&gt;&lt;a id="main5830" href="http://www.mysite.com"&gt;Test&lt;/a&gt;&lt;/div&gt; &lt;ul class="subItems"&gt; &lt;li&gt;&lt;a&gt;test 1&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a&gt;test 2&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a&gt;test 3&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>I would like test 1's a element to get the class of selected.</p> <p>For some reason, this is not selecting the first a within in the UL, or ANYTHING in the UL element. Have I done something wrong here?</p> http://stackoverflow.com/questions/1657702/addid-in-jquery 0 addID in jQuery? Nimbuz 2009-11-01T17:16:24Z 2009-11-01T17:19:59Z <p>Is there any selector available to add IDs like there is for adding a class - addClass()?</p> http://stackoverflow.com/questions/1647336/what-does-imgrel-mean-in-this-jquery-plugin 0 What does img[@rel= mean in this jQuery plugin? Shore 2009-10-30T00:20:49Z 2009-10-30T00:28:18Z <p><a href="http://files.cnblogs.com/opper/galleria.js" rel="nofollow">Here</a></p> <p>Is it a deprecated selector?</p> http://stackoverflow.com/questions/1644342/select-inner-text-jquery 1 Select inner text (jQuery) Sven Klouem 2009-10-29T15:01:12Z 2009-10-29T18:45:47Z <pre><code>&lt;div class="boxen checkedzahlen" id="box41_0_1"&gt; 41 &lt;input type="checkbox" value="1" name="cb41_0_1" id="cb41_0_1" checked="checked"/&gt; &lt;/div&gt; </code></pre> <p>Something like this is given, how can i animate the text ("41"), if $(this) &lt;- the class:boxen, is clicked?</p> <p>this > * does not work, this:children also not...</p> http://stackoverflow.com/questions/306583/jquery-this-selector-and-children 19 jQuery $(this) selector and children? Peeloo 2008-11-20T19:44:05Z 2009-10-29T16:55:45Z <p>I'd like to use a selector to select the child img of the div I'm clicking on this example:</p> <blockquote> <p>&lt;div id=&quot;...&quot;&gt;&lt;img src=&quot;...&quot;&gt;&lt;/div&gt;</p> </blockquote> <p>To get the div, I've got this selector:</p> <blockquote> <p>$(this)</p> </blockquote> <p>How do I get the img with a selector?</p> http://stackoverflow.com/questions/1608695/jquery-contains-selector-multiple-text-items 1 JQuery Contains Selector - Multiple Text Items John 2009-10-22T17:19:52Z 2009-10-25T01:18:22Z <p>Hi,</p> <p>I am new to JQuery and maybe am missing the obvious, but how can I filter a table using the contains selector but have it look for multiple strings using an OR operator. In other words, I would like rows containing "Red" OR "Yellow" to be hidden.</p> <p>So far I have this which works by hiding all rows except the given date:</p> <pre><code>$(function() { $('div#WebPartWPQ5 table.ms-summarycustombody tr:not(:contains("10/27/2009"))') .hide(); }); </code></pre> <p>As added challenge, what I am really trying to do is write a hidden script that calulates a date range and then removes table rows containing dates not falling into that range.</p> <p>Thank you in advance.</p> <p>John</p> http://stackoverflow.com/questions/1583620/how-to-select-div-in-table-cell-using-jquery 2 How to select div in table cell using jQuery sparkymark75 2009-10-18T00:45:40Z 2009-10-18T17:40:46Z <p>I have the following table structure;</p> <pre><code> &lt;tr&gt; &lt;th&gt;&lt;label for="ctl00_bodyContent_username"&gt;username:&lt;/label&gt;&lt;/th&gt; &lt;td class="field"&gt;&lt;input name="ctl00$bodyContent$username" type="text" id="ctl00_bodyContent_username" /&gt;&lt;/td&gt; &lt;td class="info"&gt; &lt;div class="message"&gt;what do you want to be known as?&lt;/div&gt; &lt;div class="valid"&gt;username available&lt;/div&gt; &lt;div class="invalid"&gt;this username is already taken&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; </code></pre> <p>What I'm looking to achieve is when the textbox #ctl00_bodyContent_username has focus, te div .message is shown (default is display:none) in the adjacent table cell.</p> http://stackoverflow.com/questions/1569408/how-can-i-select-with-multiple-css-selector-with-yui3 0 how can I select with multiple css selector with YUI3 Young Park 2009-10-14T22:41:24Z 2009-10-15T00:16:38Z <pre><code>&lt;ul&gt; &lt;li class="selected cell"&gt;test&lt;/li&gt; &lt;li class="cell"&gt;test2&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>How can I select only the .selected .cell element? </p> <p>Y.one('.selected, .cell') &lt;= This selects boths li elements. and I just want to select the first <li> element. </p> <p>Is there something like? Y.one('.cell').one('.selected') ???</p> http://stackoverflow.com/questions/1565449/what-is-the-more-correct-efficient-selector 0 What is the more correct/efficient selector? Karthik 2009-10-14T10:24:45Z 2009-10-14T10:27:47Z <pre><code>$("select").change(function() { alert($("select option:selected").val()); }); </code></pre> <p>OR</p> <pre><code>$("select").change(function() { alert($(this).attr("value")); }); </code></pre> <p>I am specifically looking at the selector used in the alert. From my testing the result in the same correct values to be displayed. </p> http://stackoverflow.com/questions/1553601/select-a-tag-with-a-selector-from-a-text-variable-using-jquery 0 Select a Tag with a Selector from a Text Variable using jQuery basit. 2009-10-12T09:36:53Z 2009-10-12T13:33:09Z <p>I have a string which contains text and some <code>&lt;a&gt;</code> tags in it; I want to know how I can select a tag from the variable and loop it. I tried the following but it didn't work:</p> <pre><code>var text = `some string here with &lt;a href="#link"&gt;http:something.com&lt;/a&gt; more string and more links also`; $('a', text).each(function() { var string = $(this).html(); $(this).html(string.substring(0, length-1)+(string.length &gt; length ? end : '')); }); </code></pre> http://stackoverflow.com/questions/1553784/jquery-each-loop-and-replace-to-same-location 0 jquery .each loop and replace to same location? basit. 2009-10-12T10:19:50Z 2009-10-12T11:47:04Z <p>i got help (<a href="http://stackoverflow.com/questions/1553601/jquery-select-a-tag-with-selector-from-a-text-veriable">http://stackoverflow.com/questions/1553601/jquery-select-a-tag-with-selector-from-a-text-veriable</a>) on looping the static var and replacing it value, but just one question is left from it, is how can i replace finded tags with newly changed tags in the text area</p> <p>Code:</p> <pre><code>var length = 30; var end = '...'; var text = `some string here with &lt;a href="#link"&gt;http:something.com&lt;/a&gt; more string and more links also`; $('&lt;div&gt;' + text + '&lt;/div&gt;').find('a').each(function() { var link_value = $(this).html(); $(this).html(link_value.substring(0, length-1)+(link_value.length &gt; length ? end : '')); // now how can i put $(this).html() back in the text area, which it was found at? }); </code></pre> http://stackoverflow.com/questions/1548811/xml-schema-key-in-sequence 0 XML Schema - Key in sequence Nona Urbiz 2009-10-10T19:07:28Z 2009-10-10T20:54:01Z <p>I'm trying to put a key in sequence and am being bombarded with errors. It seems I can't do this. Additionally, I am being told my key needs a field and selector, which I have been able to find very little documentation on. (In fact, in desperation, I downloaded Liquid XML Studio [vs. Notepad] and searched it's help files. . . to find NO even reference to the word "selector") Regardless - what is another method I can use to guarantee a unique, not null value for an element, within a sequence? (The content in question is a string)</p> <p>Please note that without the key element, the schema validates.</p> <h3>The error</h3> <blockquote> Invalid per cvc-complex-type.1.2.4: element {http://www.w3.org/2001/XMLSchema}:key not allowed here (1) in element {http://www.w3.org/2001/XMLSchema}:sequence, expecting [{http://www.w3.org/2001/XMLSchema}:annotation, $, {http://www.w3.org/2001/XMLSchema}:element, {http://www.w3.org/2001/XMLSchema}:group, {http://www.w3.org/2001/XMLSchema}:choice, {http://www.w3.org/2001/XMLSchema}:sequence, {http://www.w3.org/2001/XMLSchema}:any]: </blockquote> <h3>The schema</h3> <pre><code>&lt;?xml version="1.0"?&gt; &lt;xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="READOO" elementFormDefault="qualified"&gt; &lt;xs:element name="ReferralCollection"&gt; &lt;xs:complexType&gt; &lt;xs:sequence&gt; &lt;xs:key name="URL" type="string" /&gt; &lt;xs:element maxOccurs="unbounded" name="keyword"&gt; &lt;xs:complexType&gt; &lt;xs:simpleContent&gt; &lt;xs:extension base="xs:string"&gt; &lt;xs:attribute name="occurrences" type="xs:int" use="required" /&gt; &lt;/xs:extension&gt; &lt;/xs:simpleContent&gt; &lt;/xs:complexType&gt; &lt;/xs:element&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;/xs:element&gt; &lt;/xs:schema&gt; </code></pre> http://stackoverflow.com/questions/1536518/jquery-click-once-then-disable-enable-element 0 jquery click once, then disable/enable element basit. 2009-10-08T08:52:20Z 2009-10-08T16:25:08Z <p>i have many rows</p> <ol> <li>List item - delete</li> <li>List item - delete</li> <li>List item - delete</li> </ol> <p>like above 3 rows.. it has delete link, on click i want to disable that link, until i get response from ajax saying ok delete it or no not ok, dont delete it, user is not an owner, then i have to give the element back to clickable.. if that makes sence</p> <p>basically preventing element on click and then restoring its element on error from backend.</p> <p>what methods do i need to use for this? im using live method, if i use die, then how will i restore again?</p> http://stackoverflow.com/questions/1537241/jquery-selector 0 jquery selector ntan 2009-10-08T11:31:23Z 2009-10-08T12:00:45Z <p>Hi i need some hepl to find a selector for jqeury</p> <p>I have these textboxes</p> <pre><code>&lt;input type="text" name="text[1]" value="1,2,3"&gt; &lt;input type="text" name="text[2]" value="1,8,9"&gt; &lt;input type="text" name="text[3]" value="7,4,3"&gt; </code></pre> <p>i need for each these textboxes do a search and find if value=1 exist. I need help to the selector (somthing like $(input[name=text[]]).each()</p> <p>i dont want to use $(input[name^='text']).each(), i dont think its safe because the rest of my code.Is there a better way.</p> <p>Can any one help</p>