[jQuery] Trying to access elements created by remotely loaded script

2009-09-03 Thread AsymF
I am currently trying to add extra functionality to the AddThis and OnlyWire social bookmarking scripts. Basically I want to be able to send calls back to our server using AJAX to track when using these services results in a sale and how popular they are on a site. For instance, in AddThis, there

[jQuery] Re: jdMenu hides entire menu when top level link clicked

2008-09-04 Thread AsymF
Anyone have any ideas on this? On Aug 6, 7:20 pm, AsymF <[EMAIL PROTECTED]> wrote: > I am trying to implement jdMenu 1.4.1 with jQuery 1.2.6. However, when > a top level link is clicked it hides the entire menu the moment it is > clicked. This doesn't happen when the sel

[jQuery] Re: Security Error: Content may not load data from

2008-06-19 Thread AsymF
was calling it. On Jun 19, 10:54 am, AsymF <[EMAIL PROTECTED]> wrote: > When I execute the following code: > -- > $.getJSON('/apps/sendnote.php?a=1&id=5', function (id, status_text) { / > *func code here*/ }); > -- > > I get the error: > -- &

[jQuery] Security Error: Content may not load data from

2008-06-19 Thread AsymF
When I execute the following code: -- $.getJSON('/apps/sendnote.php?a=1&id=5', function (id, status_text) { / *func code here*/ }); -- I get the error: -- uncaught exception: Security Error: Content at https://www.mysite.com/ may not load data from http://www.mysite.com/apps/sendnote.

[jQuery] Re: Problem positioning an absolute element

2008-04-23 Thread AsymF
Do you mean here? http://www.pmob.co.uk/temp/3colfixedtest_sourcenone.htm That is not my page, just the page I took the layout code from. On Apr 22, 2:24 pm, mrpollo <[EMAIL PROTECTED]> wrote: > i see no div called box > at leats firebug doesnt > > On Apr 22, 9:53 am, AsymF

[jQuery] Re: Problem positioning an absolute element

2008-04-22 Thread AsymF
And what is with this post showing up 7 times?? I only hit the submit button once on Google Groups. Hope no one thinks I am spamming. :( On Apr 17, 8:01 pm, AsymF <[EMAIL PROTECTED]> wrote: > I recently implemented the following CSS layout on a site in place of > a previous table &

[jQuery] Problem positioning an absolute element

2008-04-18 Thread AsymF
I recently implemented the following CSS layout on a site in place of a previous table layout: http://www.pmob.co.uk/temp/3colfixedtest_sourcenone.htm After doing so I cannot get DIVs to position correctly in some instances when using jQuery to do so. One in particular is too far down and over to

[jQuery] Re: Star Rating v2 and Half-Star (NEED FEEDBACK)

2008-04-04 Thread AsymF
It seems that in IE 7 the DIVs for the stars are in fact being created from the radio buttons as expected but the text-indent CSS is set to -999em. On Apr 4, 8:34 am, AsymF <[EMAIL PROTECTED]> wrote: > Yeah, I had thought about doing that. Even overlapping them. Was just > wonder

[jQuery] Re: Star Rating v2 and Half-Star (NEED FEEDBACK)

2008-04-04 Thread AsymF
how up. On Apr 4, 4:24 am, "Diego A." <[EMAIL PROTECTED]> wrote: > Erm.. no. > What you can do is have 2 controls. > > 1. Dummy control to display value (split). > 2. Actual control that takes an input (not split). > > Show/hide at your

[jQuery] Re: Star Rating v2 and Half-Star (NEED FEEDBACK)

2008-04-03 Thread AsymF
star for each one? On Apr 3, 4:10 pm, AsymF <[EMAIL PROTECTED]> wrote: > Any way to get around the need for the metadata plugin? I am trying to > keep included scripts light. > > On Mar 20, 3:23 pm, "Diego A." <[EMAIL PROTECTED]> wrote: > > > For referenc

[jQuery] Re: Star Rating v2 and Half-Star (NEED FEEDBACK)

2008-04-03 Thread AsymF
Check it out:http://www.fyneworks.com/jquery/star-rating/ > > > On Mar 19, 10:08 pm, AsymF <[EMAIL PROTECTED]> wrote: > > > > Why can't the background-color value just be set to transparent? > > > > On Mar 16, 5:28 pm, timothytoe <[EMAIL PROTECTED]>

[jQuery] Re: Star Rating v2 and Half-Star (NEED FEEDBACK)

2008-03-28 Thread AsymF
had tried that but it didn't work reliably in IE. It was a CSS > > issue. But hey, I think I've fixed it, in which case the only issue > > with prototype B will be resolved. > > > Check it out:http://www.fyneworks.com/jquery/star-rating/ > > > On Mar 19, 10

[jQuery] Returning false if $.ajax() experiences an error

2008-03-05 Thread AsymF
If a link has a click event I can stop that from firing by just returning false so that the browser stays on the current page. How would I do this when the click event is supposed to send a synchronous AJAX call using $.ajax()? I only want the click event to return false and stop the link from be

[jQuery] Re: Half star rating plugin won't work with jQuery 1.2.3

2008-03-05 Thread AsymF
hope that's OK. > > I'll post back here... (and in the official project page in the jQuery > plugins website) > > On Mar 4, 5:32 pm, AsymF <[EMAIL PROTECTED]> wrote: > > > I am really just looking for way to display the data, not to worry > > about grace

[jQuery] Re: Half star rating plugin won't work with jQuery 1.2.3

2008-03-04 Thread AsymF
sh, .5s). > > How are you going to use this? > > On Mar 1, 5:46 pm, AsymF <[EMAIL PROTECTED]> wrote: > > > I am now working on the jQuery Star Rating Plugin v1.1 by Diego > > A.,http://www.fyneworks.com, [EMAIL PROTECTED] > > > I have gotten it working and a

[jQuery] Animating color changes using RGB values

2008-02-25 Thread AsymF
I know jQuery is setup to do animations based on math performed on numerical values, so if I supplied it with a CSS rgb() range for it to animate from one color to the next (say red to blue) could it do the color transition?

[jQuery] Trying to get text content after an element but before a line break

2008-02-25 Thread AsymF
Suppose I have the following in a document: Line # 64646354 How would I extract the number 64646354 from that and only the number? Trying to avoid the complexity of a regular expression is possible.

[jQuery] Re: Sending an AJAX call back on link click without losing it

2008-02-25 Thread AsymF
Nevermind. Apparently I had something wrong somewhere because this isn't happening anymore. On Feb 24, 4:39 pm, AsymF <[EMAIL PROTECTED]> wrote: > I am trying to study user interface usage based on links clicked, so I > attached a pingback to the click event of every link.

[jQuery] Sending an AJAX call back on link click without losing it

2008-02-24 Thread AsymF
I am trying to study user interface usage based on links clicked, so I attached a pingback to the click event of every link. It simply does a basic $.get(url) to the statistic tracking script on the server. However, I have noticed during my tests of this rather simple code that a LOT of my pingbac

[jQuery] Re: Selecting the ancestor of an element

2008-02-23 Thread AsymF
gt; - Richard > > On Fri, Feb 22, 2008 at 11:49 AM, AsymF <[EMAIL PROTECTED]> wrote: > > > If I do the following I end up with every single DIV all the way up > > the document chain being prepended with the content instead of its > > immediate parent: > &

[jQuery] Re: Selecting the ancestor of an element

2008-02-22 Thread AsymF
h" <[EMAIL PROTECTED]> wrote: > I'm not sure I understand what you're trying to get at. If you have an > element (childObj), it has only one parent, $(childObj).parent(). Perhaps > you want to provide some more context if I'm not getting it? > > - Richard >

[jQuery] Re: How could I pass an object into an eval statement

2008-02-22 Thread AsymF
(the first few links > from a Google search for "javascript closures"): > >http://www.jibbering.com/faq/faq_notes/closures.html >http://blog.morrisjohns.com/javascript_closures_for_dummies > > Karl Rudd > > On Fri, Feb 22, 2008 at 6:20 AM, AsymF <[EMAIL PRO

[jQuery] Re: Selecting the ancestor of an element

2008-02-21 Thread AsymF
e > > http://docs.jquery.com/Traversing/parent#expr > > http://docs.jquery.com/Traversing/parents#expr > > - Richard > > On Thu, Feb 21, 2008 at 12:33 PM, AsymF <[EMAIL PROTECTED]> wrote: > > > How would I select the ancestor or parent of an element?

[jQuery] How could I pass an object into an eval statement

2008-02-21 Thread AsymF
For instance, say a function is passed an object and that function is supposed to set an event to fire on a timeout, how would I do it? Even more complicated, how would I do it if I needed to perform the action on a sub-selection of the object passed? If I wanted to do this and I have just id's,

[jQuery] Selecting the ancestor of an element

2008-02-21 Thread AsymF
How would I select the ancestor or parent of an element?

[jQuery] Using val() vs text()

2008-02-18 Thread AsymF
I want to update the contents of an element depending if it is a form element who's value can be set or if it is just an element who internal text can be set. How could I distinguish whether to use val() or text() on the fly?