To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / plugins / redmine_bibliography / assets / javascripts / bibliography.js @ 1274:5ea1a213c7a5

History | View | Annotate | Download (341 Bytes)

1 1274:5ea1a213c7a5 luis
$("#publication_bibtex_entry_attributes_entry_type").live("change", function() {
2
    console.log("AJAX RULEZ");
3
4
    $.ajax({
5
        type: "POST",
6
        url: "/publications/show_bibtex_fields",
7
        data: "value=" + $("#publication_bibtex_entry_attributes_entry_type").val(),
8
        dataType: "script"
9
    });
10
11
    return false;
12
});