[ ... snipped ... ]
>
> ... and after looking at your code (which always helps), I see you're
> referencing "this" (as opposed to jQuery's $(this)), which is why html()
> wouldn't have worked.
>
> In that case, sure. It's been said that "this" is more efficient than
> creating a jQuery reference
On Tue, Dec 22, 2009 at 10:40 AM, Charlie Griefer wrote:
> On Tue, Dec 22, 2009 at 10:34 AM, Mike Walsh wrote:
>
>>
>> [ ... snipped ... ]
>>
>> Thanks for pointing me in the right direction. This is what I ended
>> up getting to work:
>>
>>jQuery("span.event", ".calendar-table").eac
On Tue, Dec 22, 2009 at 10:34 AM, Mike Walsh wrote:
>
> [ ... snipped ... ]
>
> Thanks for pointing me in the right direction. This is what I ended
> up getting to work:
>
>jQuery("span.event", ".calendar-table").each(function(){
>var html = this.innerHTML.replace(/()\
On Dec 22, 12:09 pm, Charlie Griefer
wrote:
> 2009/12/22 Šime Vidas
>
> > Well, you selected BR elements, which are empty elements, so it's no
> > mystery why this.innerHTML returns undefined...
>
> > Also, DIVs shouldn't appear inside SPANs...
>
> He did state that he's using generated HTML.
2009/12/22 Šime Vidas
> Well, you selected BR elements, which are empty elements, so it's no
> mystery why this.innerHTML returns undefined...
>
> Also, DIVs shouldn't appear inside SPANs...
>
He did state that he's using generated HTML. He has no control over it.
Mike - this isn't really a jQ
Well, you selected BR elements, which are empty elements, so it's no
mystery why this.innerHTML returns undefined...
Also, DIVs shouldn't appear inside SPANs...
On Dec 22, 8:03 am, Dhruva Sagar wrote:
> I would suggest you to wrap the sections within * into a div and select that
> div.
>
> Thanks & Regards,
> Dhruva Sagar.
>
[ ... snipped ... ]
Unfortunately I don't have control of the generated content. The
content is generated by a WordPress Calend
I would suggest you to wrap the sections within * into a div and select that
div.
Thanks & Regards,
Dhruva Sagar.
On Tue, Dec 22, 2009 at 6:29 PM, Mike Walsh wrote:
> Long time listner, first time caller ...
>
> I am struggling with a selctor and am hopeful someone can help me see
> the fores
Long time listner, first time caller ...
I am struggling with a selctor and am hopeful someone can help me see
the forest through the trees. I am using a WordPress plugin which
generates the following HTML:
26
*
Christmas Break
Christmas Break
*
http://localhost/?p=104"; style="">
Futsal T
Hi people
I need help with my navigation-system. My currently situation is the
following:
I've got a "closer" on my website, a button, that allows a close-
function to the upper div-element, in which the closer seats. One
level higher. It's the only parent-element with a "closer" on the
website.
THIS WORK: $("li:lt(8):gt(3):even");
but this did not: $("ul:has(li:eq(3))");
I believe this is the problem:
input[type="radio"][checked=true]
The correct value for the "checked" attribute is "checked", not "true"
(don't ask me why; I think it's a stinker), so jQuery comes up
empty-handed.
Whereas the other way you're approaching this:
if (this.checked)
... works becaus
Sorry that this take a while to demonstrate but it's a complete puzzle
(to me)!
I would like to determine whether there are any checked radio buttons
within the
"selected_courses" in the following HTML:
[ 5 more radio buttons]
[ 2 more courses ]
When t
Well i'm in trouble.
Following code does not trigger :
Code: Select all
$("#cat_list > div").click(function()
{ alert("Bye bye!");;
});
neither
Code: Select all
$("#cat_list ~ div").click(function()
{ alert("Bye bye!");;
});
or
Code: Select all
$("#cat_list
Good, practical formatting for understand the chain
From: Michael Geary [mailto:m...@mg.to]
Sent: Monday, November 30, 2009 3:28 AM
To: jquery-en@googlegroups.com
Subject: Re: [jQuery] Selector Help
That's a nice solution.
Let's make it easier to follow with some i
{
>> $(this).parent().siblings('li').removeClass('active');
>> $(this).parent('li').addClass('active');
>> });
>>
>> Maurício
>>
>> -Mensagem Original-
>> *De:* Charlie
>> *Para:* jquery-en@googlegroups.com
>> *Enviada em:* domingo, 29 de novembro de 2009 03:56
>> *Assunto:* Re: [jQuery] Selector Help
>> ...
>>
>> Dave Maharaj :: WidePixels.com wrote:
>> How would I go about adding class to the li in this set up?
>> all
>> some
>> none
>>
>> ...
>>
>>
>>
>>
>
7;a.filter').click(function(){
> $(this).parent().siblings('li').removeClass('active');
> $(this).parent('li').addClass('active');
> });
>
> Maurício
>
> -Mensagem Original-----
> *De:* Charlie
> *Para:* jquery-
Enviada em: domingo, 29 de novembro de 2009 03:56
Assunto: Re: [jQuery] Selector Help
...
Dave Maharaj :: WidePixels.com wrote:
How would I go about adding class to the li in this set up?
all
some
none
...
$('a.filter').click(function(){
$(this).parent().addClass('active');
});
Dave Maharaj :: WidePixels.com wrote:
How would I go about adding class to the li in this set up?
all
some
none
$('a.filter').click(function(){
$(???).addClass('active');
});
Thanks
Dave
How would I go about adding class to the li in this set up?
all
some
none
$('a.filter').click(function(){
$(???).addClass('active');
});
Thanks
Dave
i would the best thing to do regardless of your selection method is to store
them in variables.
like this
var obj = $(".wrap");
Now you have basically created an object reference point. you won't need to
re-create in 99% of cases.
so lets re-use our object reference.
// get the width of your o
As to the why I don't know, but as to the which the solution is quite easy :
do a benchmark.
Michel Belleville
2009/11/10 Adam Tistler
> I am using jquery 1.3.2. I was wondering which is faster and why:
>
> $('#my-id .main table tr.my-class') or
> $('#my-id > .main > table > tr.my-class') or
I am using jquery 1.3.2. I was wondering which is faster and why:
$('#my-id .main table tr.my-class') or
$('#my-id > .main > table > tr.my-class') or
$('#my-id tr.my-class')
Thanks Dave I think you may be on to something. I think $("*:has(>
div.someClass)") would work. Won't be fast, but that's not a concern.
I'll give it a shot tomorrow.
On Oct 21, 12:40 pm, Dave Methvin wrote:
> > Is there anyway to write a custom filter which returns the parent
> > nodes of the s
> Is there anyway to write a custom filter which returns the parent
> nodes of the selector? ie) div.someClass:parentNode or ancestor:
> div.someClass would return the parent element of div.someClass.
Not that I know of, but you might be able to use the :has selector if
you know enough about the
Is there anyway to write a custom filter which returns the parent
nodes of the selector? ie) div.someClass:parentNode or ancestor:
div.someClass would return the parent element of div.someClass.
I know you can use .parent() in jQuery, but am using Selenium RC and
am limited to using selector func
Hi,
I want all my form inputs which name start with "fieldInstanceGroups
[0].fieldInstances[1]".
I try with jQuery('input[name^="fieldInstanceGroups[0].fieldInstances
[1]"]') but any result.
Then I try some requests, with \\ to escape special characters but I
have any result.
'input[name^="field
I have a simple form field that runs a query.
I have
$('#Query').bind('keyup', function() {
...delay then search
so after key up and delay it runs the search.
Now when I click on the #query field the dropdown appears with my previous
search text...if i select one it goes into the #query fi
ins
> > > > > with 'ext-gen'" and other conditions along with that. As long as
> > > > > you're not trying to read the style string.
>
> > > > > On Aug 26, 4:06 am,John wrote:
>
> > > > > > Thanks.
>
> >
ke "if ID begins
> > > with 'ext-gen'" and other conditions along with that. As long as
> > > you're not trying to read the style string.
>
> > > On Aug 26, 4:06 am,John wrote:
>
> > > > Thanks.
>
> > > > Here is the html source,
>
> > &g
h 'ext-gen'" and other conditions along with that. As long as
> > > > you're not trying to read the style string.
>
> > > > On Aug 26, 4:06 am,John wrote:
>
> > > > > Thanks.
>
> > > > > Here is the html source,
>
> > >
> > > Thanks.
>
> > > Here is the html source,
>
> > > > > style="padding-left: 130px;">
> > >
> > > > > value=""/>
> > > > > size=&quo
I am working on the open source project: Tellurium automated testing
framework,
which is a web testing framework built on top of Selenium. We leverage
jQuery
to add jQuery selector as a locator to speed up the test performance
in IE and
also add other new functionalities. More details could be
gt; > Thanks.
>
> > Here is the html source,
>
> > > style="padding-left: 130px;">
> >
> > > value=""/>
> > > size="24" readonly="true" style="width: 343px;"/>
> >
John wrote:
> Thanks.
>
> Here is the html source,
>
> style="padding-left: 130px;">
>
> value=""/>
> size="24" readonly="true" style="width: 343px;"/>
>
Thanks.
Here is the html source,
The style in the jQuery selector should match the one defined in the
html source. I wonder if I
did any other thing wrong here.
Thanks,
John
On Aug 26, 6:45 am, Paolo Chiodi wrote:
> Maybe t
you know what is wrong?
>
> Thanks again,
>
> John
>
> On Aug 25, 2:50 pm, "Mauricio \(Maujor\) Samy Silva"
> wrote:
>> Sintax for the selector is:
>>
>> $('img[style="overflow: auto; width: 356px; height: 100px;"]')
>>
>> Ma
That may not be an option, at least now. The reason is that the jQuery
selector is automatically generated by a framework, which may be
rather random and difficult to set another class.
The first thing is to get it work. As long as the syntax is correct,
it
should work fine, right? I care more
gt;
> Here "not working" means it returns empty object where it should
> return non-empty object.
>
> Do you know what is wrong?
>
> Thanks again,
>
> John
>
> On Aug 25, 2:50 pm, "Mauricio \(Maujor\) Samy Silva"
>
> wrote:
> > Sintax for the sel
te:
> Sintax for the selector is:
>
> $('img[style="overflow: auto; width: 356px; height: 100px;"]')
>
> Maurício
> -Mensagem Original-
> De: John
> Para: jQuery (English)
> Enviada em: terça-feira, 25 de agosto de 2009 14:36
>
Sintax for the selector is:
$('img[style="overflow: auto; width: 356px; height: 100px;"]')
Maurício
-Mensagem Original-
De: John
Para: jQuery (English)
Enviada em: terça-feira, 25 de agosto de 2009 14:36
Assunto: [jQuery] jQuery selector for style att
Hi,
I want to select the following image using jQuery selector to see if I
could use the style attribute,
but seems the selector
img[style=overflow: auto; width: 356px; height: 100px;]
does not work at all. What would be the correct selector for the style
attribute?
Thanks in advance
How can I pick an id element (here #bridge1,#bridge2) and toggle its
child (here a p element) without actually using the id element as
parent?
'this > p' apparently does not work.
$('#bridge1,#bridge2').click(function(){
$('this > p').toggle();
return false;
});
Thanks for your h
with the markup like:
i want to add a class "active" to , Link
I'm pretty new to Javascript/ jQuery, so this is really bugging me.
I'm trying to get the height of an h1 that is a sibling to this. The
value for the variable h1Height, however, returned as null in the
console in Firebug. Perplexed, I tried console.logging ('this'+'+h1')
to see what it was inter
I re-ran the test now.
test('#content a.submit');
test('a.submit');
test('.submit');
test('("#content").find("a.submit")');
Basically I get the same result: for my pages (!) element.MyClass has
the best average performance.
I guess it's as Karl mentioned earlier: "If the selectors aren't
causin
@Karl: o, that was a serious c&p "bug"... :) I was aware that IE6
and 7 don't support getElementsByClassName (see my initial message),
still the results of my first test showed similar results for the
class selector. I hope I didn't have another c&p bug in there... ;)
@Mike: the pages I'm wor
You can't measure whether one selector will be faster than another on all
possible pages. All you can measure is which is faster on the page you're
testing.
On a page with only a single element, an 'a.submit' or even just an 'a'
selector will be faster than '#content a.submit', because it's doin
If you're doing this:
test('#content a.submit');
then you shouldn't compare it to this:
test('("#myDiv").find("span.myClass")');
that's "apples to oranges." instead, compare it to this:
test('("#content").find("a.submit")');
The reason the other browsers are so much faster than IE 6 and 7wit
Hi Karl,
thanks for your reply.
I used jQuery tester in FF2 + 3, IE6, 7 + 8, Opera 9.64 and I think
also in Safari 4 (on my Win XP machine). The results were are all
kinda similar. Using the class selector was always fastest.
I just ran the following test (choosing jQuery 1.3.2 again):
test('#
On Jul 2, 2009, at 8:45 AM, north wrote:
Hi,
I just tested all my jQuery selectors using the jQuery Tester (http://
jquery.nodnod.net), and the results seem to "contradict" one thing I
read in a performance article: that you should descend from the
closest parent ID when using classes in you
Starting to use jQuery having read 'jQuery in Action'.
Came across the following sysntax for sortable tables:
$('table.sortable').each(function() {
var $table = $(this);
$('th', $table).each(function(column) .
Clearly the $('th', $table).each syntax results in traversing 'th
When calling this jQuery:
$("#homepage-slides img:eq(0)").fadeOut(300, function() {
$("#homepage-slides img:eq(1)").fadeIn(300, function() { $("#homepage-
slides img:eq(0)").remove(); });
});
I'm getting this warning in the Web Developer toolbar in Firefox:
Warning: Unknown pseudo-class
Hi,
I just tested all my jQuery selectors using the jQuery Tester (http://
jquery.nodnod.net), and the results seem to "contradict" one thing I
read in a performance article: that you should descend from the
closest parent ID when using classes in your selector (the article
says "April 09", so th
try this
jQuery(document).ready(function() {
$(".some-class").hover(
function () {
$(this).children('.inside').css
("display", "block");
},
func
hi,
could anybody help me with jquery selectors?
i have this code:
...
on hover on each "some-class" element i want to set "display: block;"
for div with "inside" class, but only on div which is child of
actually hovered element.
is it possible do something like this?
I've been trying for a while to alter the second to last row of a
table. I've tried several ways. The number of rows is dynamic so I
can't hard code a number into nth-child. I used $rowNeeded =
$thisRow.parents('table:first').children().children().length - 1 to
get the second to last row, but it d
Hello,
I'm getting inconsistant results across browsers with the following
test:
test.html ===
http://www.w3.org/TR/html4/strict.dtd";>
http://ajax.googleapis.com/
ajax/libs/jquery/1.3/jquery.min.js">
var xml;
$.ajax({
type: "GET",
url: "data.xml",
Hi,
Im trying to select all spans in divs containing forms that dont have
a certain id
$("div:not([id='#'+pid]) form span").css("background-color",
"yellow");
This selects all spans regardless of the ID.. Any suggestions
would be great!
Thanks in advance...
I am trying to disable all links except for the one clicked.
$('a[class^="edit_"]').click(function(){
var url_id = $(this).attr('href');
var e = $(this).attr('class');
var x = $(this).attr('id').split('_');
var y = x[0];
var z = x[1];
alert(e);
the alert shows edit_profile so e = edit_pro
I am cleaning up some html code and originally i had
Profile Settings
but the DIV inside the LI was too much so I went with adding the id="profile
to but script is no longer working
Profile Settings
Hi all
I made a jquery selector trainer.
It's written using the jquery lib.
http://lamp2.fhstp.ac.at/~lbz/beispiele/ss2009/jquery/
The problem I now have is that it is very slow and need Gigabytes of
RAM for big examples using Firefox. Maybe someone has a hint to make
it faster.
Bernhard
Awesome, glad that can be verified. Thank you!
Ticket opened: http://dev.jquery.com/ticket/4587
On May 1, 11:28 am, Ricardo wrote:
> On May 1, 12:34 pm, Matt wrote:
>
> > I'm attempting to make every ".inputbox" element except the last one
> > read-only on my webpage. Firefox and IE comply but
On May 1, 12:34 pm, Matt wrote:
> I'm attempting to make every ".inputbox" element except the last one
> read-only on my webpage. Firefox and IE comply but Safari and Chrome
> apply "readonly" to ALL ".inputbox" elements on the page, even the
> last one.
>
> I've narrowed down my issues to the se
I'm attempting to make every ".inputbox" element except the last one
read-only on my webpage. Firefox and IE comply but Safari and Chrome
apply "readonly" to ALL ".inputbox" elements on the page, even the
last one.
I've narrowed down my issues to the selector in this line:
$(".inputbox:not(:last
Here's my code:
$(document).ready(function(){
$('#menulinks a').hover(function(){
setTimeout(function(){
$(this).stop().animate({
top : '40px',
paddingTop : '40px'
Heres a very stripped down version of the page i'm trying to write.
For simplicity, the Show / Hide functions (not meaning hide from view,
but within a db) are the same (they change the background color of the
div), the functions work for the most part but ignores certain divs
(the ones titled Hid
Hi all
I profiled my script with firebug and have seen that the "filter()"
function is called very often.
As far as I see this function is called when i use a selector like
$("table[name="+name+"]")...
Is there a possibility to speed that up?
In XSLT there is the "key" function.
see:
http://www
Hi, I have a couple of questions about selectors. I have the
following HTML:
=
Some elements and elements here.
...
...
Information Type 1
First
Middle
Last
...
...
More elements and elements here.
=
Question 1:
In the click handler of the first c
Hi,
Can some1 please explain this in detail to me? I am confused on the
selector part $('').
// add list to ul
var list = $('').attr
('class',_imageLoadClassName).appendTo('ul#'+_imgContainerId);
Thanks!
It's not a selector. Where did you come across that?
The "< >" makes it think you want to create an element. It does
nothing more than creating a textNode that contains the string "<%=x.y
%>" (and a temporary DIV to hold it).
This $('< >') does the same. The '#' is ignored just as if you used $
This form of a selector is undocumented..
('#<%=x.y%>').length
What does it mean ?
Thanks..
hi,
i have a strange behaviour when parsing the xml below:
$.get('/test/Internetschuhe.XML', function(data) {
$(data).find('item').each(function() {
var $entry = $(this);
var $sizenotnull = $entry.find("stock:contains('0')");
alert($sizenotnull.length);
in firefox
Hi guys,
new to jQuery here..
I am trying to query xml using jquery
and having some problem
I need to query all the node under node A with name="test"
if I do
$("A").find(*[name=test])
it will return b,b1,c, d
How do I query using "selector" to get only immediate child so
I can get b,c,d (no b1
I have a table that has a list of songs - one for each row. I also
have a select menu that populates the song table data from an AJAX
query based on what was selected.
The first row of the table is a row (#NoSongs) that just says "No
songs were found." in case no records were returned. And I just
So... a question regarding selector efficiency.
The following snippet of HTML describes attributes associated with a polygon
in an KML. Its basically a table of data, contained as s in s in
a . Given this snippet, what would be the best (fastest) way to return
the values of MAP_ID and SITE_ADDRES
This may sound stupid to y'all jquery practitioners, but i wonder
which method is fastest (recommended) for selecting a cell with a
class in a big table (think like 1000+ rows 100+ columns):
("#tableid tbody tr.rowclass td.cellclass") or is it ("td.cellclass")
or (".cellclass").
And how about if
I was using 1.2.6 with the following line which worked perfectly.
row.find("select." + name + " option[value='" + value +
"']").attr('selected', true);
Now with 1.3.1 a javascript error is happening
A Runtime Error has occurred.
Do you wish to Debug?
Line: 4723
Error: Exception thrown and not
Hi,
I am selecting the row of a table. I would like to be able to count
how many rows there are in the table before the row I just selected. i
suppose there is a jQuery selector that will do this.
Thanks
Hi,
I have a div that is inside a td.
My code is the following fragment:
var currentelement = jQuery("#" + activecolid);
var selectedcontent = jQuery("#" + activecolid).find
("div.contentdisplay");
alert(currentelement.html());
alert(selectedcontent.html());
selectedcontent.css({border: "10px s
it ended up being quite easy actually:
$('#'+self.name, top.document).hide();
usually whenever I try to so something and it requires more than 1
line of code it's my fault, not jquery's...
This seemed to work on FF and IE:
$('#myiframe')[0].onload=function(){
$("body",frames.frmName.document).html('test')
}
On Jan 27, 3:36 pm, jquertil wrote:
> If i want to do something in a parent frame, I would do this:
>
> $('#myDiv', top.document).hide();
>
> but what about this following
the $(frames.frameName.document).ready is not actually working on
firefox.. you would probably have to put $(document).ready in the src
page and poll it to see if the document is actually ready
On Jan 27, 4:27 pm, jay wrote:
> Look at the test case I made here and let me know if it helps:
>
> ht
Look at the test case I made here and let me know if it helps:
http://jquery.nodnod.net/cases/73
On Jan 27, 3:36 pm, jquertil wrote:
> If i want to do something in a parent frame, I would do this:
>
> $('#myDiv', top.document).hide();
>
> but what about this following scenario? I'm inside a fra
maybe the parent of your documentElement?
On 27 Jan., 21:36, jquertil wrote:
> If i want to do something in a parent frame, I would do this:
>
> $('#myDiv', top.document).hide();
>
> but what about this following scenario? I'm inside a frame that was
> created like so:
>
> $('body', top.document
If i want to do something in a parent frame, I would do this:
$('#myDiv', top.document).hide();
but what about this following scenario? I'm inside a frame that was
created like so:
$('body', top.document).append('');
inside myiframe, I now want to know the id of my iframe, because I
would not
I need to run thru a table and do something for all rows that have a
checkbox that is selected. I have to collect values from several
columns in that row.
Is there a way in jQuery to find child elements for a specific DOM
element or jQuery wrapped set item?
Thanks very much. I'm just get
Hello,
Sorry about my grammar, English isn't my tang.
How I add to $ the next elmement.
Some think Like
I can do:
$(selector).add( $(selector).next)
But I think that there is a better solution.
Thank you.
I have a table structure with a multiple rows containing a checkbox
input and 4 text inputs with distinct classes. I want to prefill two
of the text inputs in the same row where the checkbox is checked.
Example code for the first two rows:
I nee
Hi all,
Here is my situation.
HTML Page DTD Type is declared as following
http://www.w3.org/
TR/xhtml11/DTD/xhtml11.dtd">
Javascript Code as following
$("#fp > option[text*='"+subject+"']").remove();
Where #fp is a ... object
Works fine in IE7 and FireFox 3.0.5
How can I fix this line or is a
This has probably been asked several times on the list but I'm having
trouble finding a resolution.
I have a simple problem where I dynamically add html to a div when the
user clicks a link based on an event handler, which works fine.
However, I am further trying to bind events to a couple of but
Just investigated it:
http://dev.jquery.com/ticket/3729
The colon is valid I think, but it's true, there are some
restrictions.
On Jan 14, 2:27 pm, naden wrote:
> That sucks. jQuery has no problem with $( 'a' ).attr( 'ajax:id' );
> Therefore it would be nice to use it in the selector too.
>
> t
That sucks. jQuery has no problem with $( 'a' ).attr( 'ajax:id' );
Therefore it would be nice to use it in the selector too.
thanks anyway have to change it.
On 14 Jan., 14:05, "jQuery Lover" wrote:
> Slightly :)
>
> You can not have special character in your html ATTRIBUTES.
>
> You should ren
Slightly :)
You can not have special character in your html ATTRIBUTES.
You should rename "ajax:id" to something else. Ex: ajax_id or ajaxId.
-
Read jQuery HowTo Resource - http://jquery-howto.blogspot.com
On Wed, Jan 14, 2009 at 5:16 PM, naden wrote:
>
> Your right. The docs
Your right. The docs said:
"Note: if you wish to use any of the meta-characters described above
as a literal part of a name, you must escape the character with two
backslashes (\). For example:
#foo\\:bar
#foo\\[bar\\]
#foo\\.bar"
and so I did. I used \\: to escape the ":"
or I'm gettin you wr
You can not have special character in attribute names. (it's not valid markup)
Documentation is saying that your should escape VALUE bit if it
contains special characters.
-
Read jQuery HowTo Resource - http://jquery-howto.blogspot.com
On Wed, Jan 14, 2009 at 2:11 PM, naden wro
I'm using jQuery 1.2.6 and having an element with the attribute
ajax:id="46"
Test Link
According to http://docs.jquery.com/Selectors/attributeEquals#attributevalue
you have to escape ":" with double backslash like I did.
alert( $( "a[ajax\\:id='46']" ).attr( 'href' ) );
I tried a lot, but it'
I'm using jQuery 1.2.6 and having an element with the attribute
ajax:id="46"
Test Link
According to http://docs.jquery.com/Selectors/attributeEquals#attributevalue
you have to escape ":" with double backslash like:
alert( $( "a[ajax\\:id='46']" ).attr( 'href' ) );
I tried a lot, but it's not
I'm using a attribute selector and I want to combine the *= with the !
= on href. Is there any way to do this?
I'm fairly new to the framework and I've been messing around a bit.
These below confuses me.
1. Why is this snippet not working? Firefox's error console throws
an error saying < $("button")[0].bind is not a function >
$("button")[0].bind("click", function(event){alert(this)});
2. And why do
1 - 100 of 227 matches
Mail list logo