Search Results

1
vote

jQuery string manipulation, regex noob.

.replace(/\[([^\]]*)\]/g, link + "$1</a>") which means, find text between [ and ] and replace it with the value of link, the text itself and ''. This ensures matchin …
0
votes

jquery checkbox issue - do not check if it’s disabled

Use jQuery's ":disabled" filter instead of accessing the 'disabled' attribute. …
0
votes

Parsing XML Using JQuery

Use $('subGroup>item',data) …