We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
dont know, what is wrong with this one, but if i make an alert on external change, and reload the page, ill dont get an alert..
this is my function
$.address.init(function() { $('a').address(); }).change(function(event) { var handler = function(data) { $('#project').html($("#project", data).html()); }; $.ajax({ url: event.path, cache: false, error: function(XMLHttpRequest, textStatus, errorThrown) { handler(XMLHttpRequest.responseText); }, success: function(data, textStatus, XMLHttpRequest) { handler(data); } }); }).bind('externalChange', function(event) { alert("external change"); });
any ideas?
The text was updated successfully, but these errors were encountered:
Are you able to reproduce it with the provided Events sample?
Sorry, something went wrong.
No branches or pull requests
dont know, what is wrong with this one, but if i make an alert on external change, and reload the page, ill dont get an alert..
this is my function
$.address.init(function() {
$('a').address();
}).change(function(event) {
var handler = function(data) {
$('#project').html($("#project", data).html());
};
$.ajax({
url: event.path,
cache: false,
error: function(XMLHttpRequest, textStatus, errorThrown) {
handler(XMLHttpRequest.responseText);
},
success: function(data, textStatus, XMLHttpRequest) {
handler(data);
}
});
}).bind('externalChange', function(event) {
alert("external change");
});
any ideas?
The text was updated successfully, but these errors were encountered: