You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tried to use these two Sizzle methods and didn't work.
Sometimes you don't want to give an absolute path to the element. For example, if you have a list and you want to iterate through all the items and retrieve one value from a specific div inside of each one.
The code i'm using:
$.getPage(function(page){// Iterate over each 'h2 a' elements.$('.ti').each(function(index,element,done){this.children('a',function(){// this should now be te 'a' inside '.ti'done();});},// This method is called after all the items have been iterated over...function(){$.close();});});
The text was updated successfully, but these errors were encountered:
This would probably need to be done manually since 'children' is an iterating function and to create an iterating function outside of a synchronous workflow is difficult (since you have to worry about asynchronous behavior). It may need to be done the same as the each function. https://github.com/travist/jquery.go.js/blob/master/lib/jquery.go.js#L258
Tried to use these two Sizzle methods and didn't work.
Sometimes you don't want to give an absolute path to the element. For example, if you have a list and you want to iterate through all the items and retrieve one value from a specific div inside of each one.
The code i'm using:
The text was updated successfully, but these errors were encountered: