Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is wrong with this code line "$('#myid.3').text('blah blah!!!');"



What is wrong with this code line "$('#myid.3').text('blah blah!!!');"..

Answer / chaitanya

The problem with above statement is that the selectors is having meta characters and to use any of the meta-characters ( such as !"#$%&'()*+,./:;<=>?@[]^`{|}~ ) as a literal part of a name, it must be escaped with with two backslashes: \. For example, an element with id="foo.bar", can use the selector $("#foo\.bar").

So the correct syntax is,

Hide Copy Code

$('#myid\.3').text('blah blah!!!');

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More jQuery Interview Questions

Is jQuery a library for client scripting or server scripting?

1 Answers  


How do I check if the DOM is ready?

0 Answers  


Explain jquery filter?

0 Answers  


Does jquery 2.0 supports ie? : jquery mobile

0 Answers  


Can you please explain the difference between prop and attr? : jquery mobile

0 Answers  


What's next on the hitlist with jquery ui?

0 Answers  


Explain the difference between .empty() and .remove() ?

0 Answers  


Mac, windows or linux? Why do you love this platform while using jquery?

0 Answers  


Define .siblings() method in jquery?

0 Answers  


Tell me can we have multiple document.ready() function on the same page? : jquery mobile

0 Answers  


Can you write a jquery code to select all links inside the paragraph?

0 Answers  


How do you install/use jquery in a project.

0 Answers  


Categories