I have a select box that when clicked on it (and run jQuery code in js file) get in console chrome (Ctrl+J) this alert, i don't know what is this error?(i have chrome 16.0.912.63)
How do I solve this?
GET .js 403 (Forbidden)
chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:11
--------------- mouse down -----------------------------
chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:42empty - parent element isnt as source
chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:63send request: 2chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:18
--------------- mouse up -----------------------------
chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:11
--------------- mouse down -----------------------------
chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:63send request: THE PORT chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:18
--------------- mouse up -----------------------------
chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:11
--------------- mouse down -----------------------------
chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:42empty - parent element isnt as source chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:63send request: 2chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:18
--------------- mouse up -----------------------------
chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:11
--------------- mouse down -----------------------------
chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:42empty - parent element isnt as source chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:63send request: chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:18
--------------- mouse up -----------------------------
Update:
This is my js code:
$('select[name="stayn"]').live('change', function(){
var insert = $(this).closest('.column');
var input_val = $(this).closest('.column').prev('.column').find('input').val();
var this_val = $(this).val();
$.ajax({
type: "POST",
dataType: "json",
url: 'get_price',
data: {relation: input_val, staynight: this_val},
cache: false,
success: function (data) {
$.each(data ,function(idx, val){
insert.after('<input name="child" id="'+val.child.replace(',', '')+'"');
})
}
})
})
I have a select box that when clicked on it (and run jQuery code in js file) get in console chrome (Ctrl+J) this alert, i don't know what is this error?(i have chrome 16.0.912.63)
How do I solve this?
GET http://d3lvr7yuk4uaui.cloudfront/items/dom/20111209/l/localhost.js 403 (Forbidden)
chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:11
--------------- mouse down -----------------------------
chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:42empty - parent element isnt as source
chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:63send request: 2chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:18
--------------- mouse up -----------------------------
chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:11
--------------- mouse down -----------------------------
chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:63send request: THE PORT chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:18
--------------- mouse up -----------------------------
chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:11
--------------- mouse down -----------------------------
chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:42empty - parent element isnt as source chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:63send request: 2chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:18
--------------- mouse up -----------------------------
chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:11
--------------- mouse down -----------------------------
chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:42empty - parent element isnt as source chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:63send request: chrome-extension://dhkplhfnhceodhffomolpfigojocbpcb/cs.js:18
--------------- mouse up -----------------------------
Update:
This is my js code:
$('select[name="stayn"]').live('change', function(){
var insert = $(this).closest('.column');
var input_val = $(this).closest('.column').prev('.column').find('input').val();
var this_val = $(this).val();
$.ajax({
type: "POST",
dataType: "json",
url: 'get_price',
data: {relation: input_val, staynight: this_val},
cache: false,
success: function (data) {
$.each(data ,function(idx, val){
insert.after('<input name="child" id="'+val.child.replace(',', '')+'"');
})
}
})
})
Share
Improve this question
edited Dec 27, 2011 at 21:53
Kate Wintz
asked Dec 27, 2011 at 21:30
Kate WintzKate Wintz
6432 gold badges11 silver badges24 bronze badges
4
- Can you post that code ? – abuduba Commented Dec 27, 2011 at 21:33
- I updated it, Please see again – Kate Wintz Commented Dec 27, 2011 at 21:39
- In here is my full html: pastebin./uZRGxkfp, but this problem there is in all html page in my folder and get this error by chrome. – Kate Wintz Commented Dec 27, 2011 at 21:51
- The pastebin mentioned above is removed, btw. – Ulrik H. Kold Commented Jul 11, 2012 at 19:13
1 Answer
Reset to default 6You probably want to disable the "Babylon-Pro" Chrome extension (extension id dhkplhfnhceodhffomolpfigojocbpcb). It's what's throwing most of these errors.