If you want to get a set whose IDs start with "div1.", then you can use:
$('[EMAIL PROTECTED]')
You could also filter the result set with a regex like this:
$('div').filter(function(){ return /^div1\./.test(this.id); })



Orcun Avsar-2 wrote:
> 
> 
> Is it possible to define a regex with a # selector that will allow
> select multible idies.
> For example i want to select tags with idies those start with "div1."
> or some idies with more complexed match that can be find through a
> regexp expression
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Defining-regular-expressions-with---selector----tp17252437s27240p17255180.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.

Reply via email to