>Ah, you tried, well, this ($res =
>$dom->query('input[type="text"][value="somevalue]');) is how it works with
>jQuery selectors.
>
>Regards,
>Saša Stamenković
yep, it doesn't work, it looks like it should though.
--
View this message in context:
http://www.nabble.com/Zend_Dom_Query-and-attrib
Ah, you tried, well, this ($res =
$dom->query('input[type="text"][value="somevalue]');) is how it works with
jQuery selectors.
Regards,
Saša Stamenković
On Fri, Oct 2, 2009 at 8:09 AM, Саша Стаменковић wrote:
> Try:
> $res = $dom->query('input[type="text"][value="somevalue]');
>
> Regards,
> S
Try:
$res = $dom->query('input[type="text"][value="somevalue]');
Regards,
Saša Stamenković
On Thu, Oct 1, 2009 at 11:19 PM, gerardroche wrote:
>
> how would you query two attributes together?
>
> I've tried quite a fwe variations:
>
>
>
> $res = $dom->query('input[type="text" value="somevalue
how would you query two attributes together?
I've tried quite a fwe variations:
$res = $dom->query('input[type="text" value="somevalue]');
$res = $dom->query('input[type="text", value="somevalue]');
$res = $dom->query('input[type="text"+value="somevalue]');
$res = $dom->query('input[type="text
Thank you for the reply. However, using spaces with the word or substring
selectors throws a fatal error.
For now, I'm using the word selector with the substring of the attribute
value.
On Thu, Oct 16, 2008 at 4:27 AM, Matthew Weier O'Phinney
<[EMAIL PROTECTED]>wrote:
> -- Mon Zafra <[EMAIL PROTE
-- Mon Zafra <[EMAIL PROTECTED]> wrote
(on Thursday, 16 October 2008, 03:50 AM +0800):
> Hi all,
>
> How do I select a node with an attribute with spaces? This code:
>
> require_once 'Zend/Dom/Query.php';
> $val = 'foo bar';
> $html = '';
>
> $dom = new Zend_Dom_Query($html);
> $res = $dom->quer
Hi all,
How do I select a node with an attribute with spaces? This code:
require_once 'Zend/Dom/Query.php';
$val = 'foo bar';
$html = '';
$dom = new Zend_Dom_Query($html);
$res = $dom->query('input[value="' . $val . '"]');
echo(count($res));
returns 0. I need this to make my controller tests pa