cherdt / BingoCardGenerator

A bingo card generator
21 stars 10 forks source link

Sticky title, free space in Firefox #7

Closed cherdt closed 6 years ago

cherdt commented 9 years ago

Evan reported issues with the title and free space displaying the default text rather than his custom selections in Firefox. He provided updated code to fix:

Before:

$("#title").attr("value", bingoGenerator.urlUnencode(qs.title));

After:

$("#title").val(bingoGenerator.urlUnencode(qs.title));
cherdt commented 7 years ago

Resolved -- all calls to attr("value", value) have been replaced with val(value)