Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

URL attribute from data of HTML element #39

Open
palodelincak opened this issue Sep 3, 2012 · 1 comment
Open

URL attribute from data of HTML element #39

palodelincak opened this issue Sep 3, 2012 · 1 comment

Comments

@palodelincak
Copy link

Is possible to make universal .ajax-chzn-select class, which will be loading URL attribute from HTML element?

Something like this:

$(".ajax-chzn-select").ajaxChosen
    method: "GET"
    dataType: "json"
    url: $(this).data("url")
  , (data) ->
    terms = {}
    $.each data, (i, val) ->
      terms[val._id] = val.name + " <span class='slug'>(" + val.slug + ")</span>"
    terms
@MarkVaughn
Copy link

That would not make sense for most peoples needs this is to specific. If you have trouble geting the data for the url try this

$(".ajax-chzn-select").each(function(){
    var $this = $(this);
    $this.ajaxChosen({
        type: 'GET',
        url: $this.data("url")
        dataType: 'json', 
        function(data){
            //your callback
        }
    });
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants