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!!!');"

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

How to keep the submit text from showing with jquery mobile? : jquery mobile

820


What are selectors in jquery?

925


What are the advantages of jQuery?

877


In what scenarios jQuery can be used?

934


How to select class in jquery?

873


What is normally not included in a cloned copy? : jQuery Mobile

880


How to fetch the values of selected checkbox array using jquery?

1004


Tell me do I need to add the jquery file both at the master page and content page as well?

808


Is jquery still relevant 2019?

907


How can we give face effect in jquery?

874


Tell me is jquery a w3c standard? : jquery mobile

833


How we can check if an element is empty or not using jquery?

796


Tell me what are the slow selectors in jquery? : jquery mobile

819


Tell me an example usage of jquery mobile? : jquery mobile

853


What is event preventdefault () and event stoppropagation () in jquery?

787