[jQuery] Re: Safari and Chrome code execution problem

2009-06-30 Thread r1u0...@gmail.com
Anyone? On Jun 11, 2:53 am, matthewpavkov wrote: > I'm also looking for a solution to a similar problem I'm having. > > I'm using Facebox to load modal popups. Then, using jquery, I'm > swaping before/after images when you hover over the image which is > loaded in the modal popup. Everything wor

[jQuery] Re: Safari and Chrome code execution problem

2009-06-10 Thread r1u0...@gmail.com
Anyone knows an answer? :) On Jun 9, 2:21 pm, "r1u0...@gmail.com" wrote: > Hi, > > I'm developing with jQuery quite long right now, but recently I > spotted one big problem with execution of jQuery code in Safari and > Chrome. So everything is working fine in thes

[jQuery] Safari and Chrome code execution problem

2009-06-09 Thread r1u0...@gmail.com
Hi, I'm developing with jQuery quite long right now, but recently I spotted one big problem with execution of jQuery code in Safari and Chrome. So everything is working fine in these browsers until jQuery code is placed in one page. But when using for example tabs plug-in loaded with ajax and on

[jQuery] Re: Skype toolbar in IE7 is crashing jQuery Tabs plugin

2009-06-03 Thread r1u0...@gmail.com
bsite/(I > didn't test > it myself) > > Having them uninstall the extension would be the best option, though ;) > > Jonathan > > > > r1u0...@gmail.com wrote: > > Hahahaha, yes and I'll say that to all my users :] > > > On Jun 3, 3:58 pm, M

[jQuery] Re: Skype toolbar in IE7 is crashing jQuery Tabs plugin

2009-06-03 Thread r1u0...@gmail.com
Hahahaha, yes and I'll say that to all my users :] On Jun 3, 3:58 pm, MorningZ wrote: > "uninstall the Skype crap" doesn't seem like an obvious answer? > > On Jun 3, 9:48 am, "r1u0...@gmail.com" wrote: > > > Hi! > > > I didn&#x

[jQuery] Skype toolbar in IE7 is crashing jQuery Tabs plugin

2009-06-03 Thread r1u0...@gmail.com
Hi! I didn't suspect that it will cause problems, but found that Skype plugin is pasting some JS code into ready page and it search for number which are telephone like. Unfortunately when it matches, it is pasting js code. When tab is changed and I'm returning to the same page tab content is past

[jQuery] [Chrome, Safari 3] Problem with Tabs plug-in loaded dynamically

2009-05-26 Thread r1u0...@gmail.com
Hi, I've got following problem with UI plugin loaded dynamically on page. Whole application works fine on FF, Opera and IE. Unfortunately problem occurs in Chrome and Safari. I've got some master page with menu, and I'm loading new pages on click event using following code: $('#menuwelcome').cl

[jQuery] Re: Compatibility problem?

2009-02-27 Thread r1u0...@gmail.com
Ok, solution found. Function text() is not working correctly in IE6/7 with string when there is no proper html tags. To fix passed value need to be saved in tag: value or something else. On Feb 27, 11:43 am, "r1u0...@gmail.com" wrote: > Ok, problem is with function .text(); >

[jQuery] Re: Compatibility problem?

2009-02-27 Thread r1u0...@gmail.com
Ok, problem is with function .text(); I'm receiving xml string, something like that: http://192.168.2.3:81/WebService.asmx";>ohne And function text() is not returning value from inside. Do you know solution or workaround? On Feb 27, 11:28 am, "r1u0...@gmail.com" wr

[jQuery] Re: Compatibility problem?

2009-02-27 Thread r1u0...@gmail.com
H, I've made some investigation with Fiddler tool and Firebug and required data are transferred correctly, but when I'm making alert (ret); I don't have received value in this variable :/ But it's only in ie6/7 Any ideas? On Feb 27, 11:16 am, "r1u0...@gmail.com&q

[jQuery] Compatibility problem?

2009-02-27 Thread r1u0...@gmail.com
Hi, I've got some code which is working fine in FF3, Opera 9 and IE8 (!). But it's not working in IE6/7. What could be a problem? $(document).ready(function() { $.ajax({ type: "POST", dataType: "text", processData: false,

[jQuery] Way of code execution?

2009-02-19 Thread r1u0...@gmail.com
Hi, I've got following code: var tr; function updateNummbers(typ) { var ret = ""; $.ajax({ type: "POST", url: "DFWebService.asmx/getNummbers", dataType: "text", data:

[jQuery] Re: Execute function in parent window

2009-02-19 Thread r1u0...@gmail.com
Ag, sorry I misunderstood you :) On Feb 19, 8:47 am, "r1u0...@gmail.com" wrote: > So it should be so? Please correct me if I'm wrong: > > parent = window.open(child); > > then in child window parent.function(); ??? > > If so, how can I pass the parent id

[jQuery] Re: Execute function in parent window

2009-02-18 Thread r1u0...@gmail.com
e to the window that created the > window. > > 2009/2/17 r1u0...@gmail.com > > > > > And how can I determinate name opening window? > > > On Feb 17, 3:53 pm, Hernando Gisinger wrote: > > > opener.function_name(); > > > > cheers > > > &

[jQuery] Re: Problem with loading page through ajax

2009-02-17 Thread r1u0...@gmail.com
ut alert(data) in the function, what exactly does it show? > > Also you could try specifying the data type like: > > $.post("hotline.aspx", function(data) {  $("#load").html(data); }, > "html"); > > On Feb 17, 3:32 pm, "r1u0...@gmail.com"

[jQuery] Re: Execute function in parent window

2009-02-17 Thread r1u0...@gmail.com
And how can I determinate name opening window? On Feb 17, 3:53 pm, Hernando Gisinger wrote: > opener.function_name(); > > cheers > > 2009/2/17 r1u0...@gmail.com > > > > > Hi, > > > I've got question. > > I'm opening a new javascript windo

[jQuery] Execute function in parent window

2009-02-17 Thread r1u0...@gmail.com
Hi, I've got question. I'm opening a new javascript window after clicking on button. On parent page I've got some jquery stuff. Is it possible to execute some function on parent site when new window was closed or by clicking the button in new window? Cheers Radek

[jQuery] Problem with loading page through ajax

2009-02-17 Thread r1u0...@gmail.com
Hi, I've got problem with loading new page through ajax like that: $.post("hotline.aspx", function(data) { $("#load").html(data); }); I was also trying with functions get, $.ajax, load, unfortunately it's not working. It's loading html correctly, but it seems like it's not executed or interpret

[jQuery] [AJAX] Problem with loading jquery through ajax

2009-02-17 Thread r1u0...@gmail.com
Hi, I've got master page with menu. When I click on menu option new page should be loaded (quite normal :P). I'm trying to do that using: $.post("hotline.aspx", function(data) { $("#load").html(data); }); And div "load" is populated with html, but it seems like it isn't executed (there is f.e. j

[jQuery] Selecting value from html

2009-02-11 Thread r1u0...@gmail.com
Hello! I've got some question: I've got variable 'tr' which contains html or text from table row. How I can read text from second tag. This tag contains _colid=2 attribute. I was trying to do something like that: $(tr ':'td:(eq(2))').text(); but it's not working. Cheers Radek

[jQuery] Selecting value from html

2009-02-11 Thread r1u0...@gmail.com
Hello! I've got some question: I've got variable 'tr' which contains html from table row. How I can read text from second tag. This tag contains _colid=2 attribute. I was trying to do something like that: $(tr ':'td:(eq(2))').text(); but it's not working.