in my website there is a jQuery function for rotating images, i want to add a my own class in to its for some customization the actual code is
c.append("<ul class="+b.paginationClass+"></ul>")
I want to add/append a class “test” into it like the following
c.append("<ul class="+b.paginationClass+" test"+"></ul>")
i put a space because want a space after paginationClass class, but i got result is
<ul class="pagination" test="" >
i expect <ul class="pagination test" > like this Please help
1 Answer