eddysilvamendes / jquery-star-rating-plugin

Automatically exported from code.google.com/p/jquery-star-rating-plugin
0 stars 0 forks source link

ajax call to build radio buttons (for stars) does not produce desired results. #69

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.  create a page with a link to perform a ajax call
2.  have php page build a table with <tr><td> tags.  include radio button logic.
3.  using the following code to create the table build from ajax call

                $(xml).find("table").each(function() {
                    var t = $(this).text();

                    var table = $("#your_table_name"); 
                    $("#your_table_name tr").remove();

                    table.append(t);

                });

the <input type='radio' will be within the td tag of the returned call.
it will just show the radio buttons and not convert to the stars.

What is the expected output? What do you see instead?
want stars, get radio buttons (works fine inline build of the radio buttons, 
not dynamically via ajax call)

What version of the plugin/jQuery are you using?
PLUGIN VERSION: current
JQUERY VERSION: current

On what browser(s) or operating system?
BROWSER(S): all of them

Please provide a link to where the problem can be observed:
URL:

Feel free to provide any additional information below.

Original issue reported on code.google.com by beaucham...@gmail.com on 14 Oct 2010 at 9:13

GoogleCodeExporter commented 8 years ago

Original comment by diego.a...@gmail.com on 23 Feb 2013 at 5:12