Handling Class Name With Spaces In It Html
I have a joomla ice accordion on a website. I am trying to get the links of the accordion tabs by using Firebug The code for one of the tabs is
Solution 1:
If I understand your question, you're looking to put the value "ABC sub" in the query string. So you'll have "Accordion=ABC sub".
You'll want to URL encode, so spaces will equal "%20" according to:URL Encoding
"Accordion=ABC%20sub"
Post a Comment for "Handling Class Name With Spaces In It Html"