DOM to pass info, but I don't have any specifics
> on it and whether it works on all browsers or not.
>
> On Apr 15, 5:01 am, gibble wrote:
>> Personally, I find the .data() function in jQuery very useful. I can keep
>> my
>> html clean, and just attach data to the ele
Personally, I find the .data() function in jQuery very useful. I can keep my
html clean, and just attach data to the elements.
What I'm finding myself needing though, is a way to persist some data client
side across pages.
Unfortunately, it wasn't as simple as $(window).data('key', 'value')
As
I was using 1.2.6 with the following line which worked perfectly.
row.find("select." + name + " option[value='" + value +
"']").attr('selected', true);
Now with 1.3.1 a javascript error is happening
A Runtime Error has occurred.
Do you wish to Debug?
Line: 4723
Error: Exception thrown and not
I actually found this while waiting for this message to be approved to the
list, what I ended up using was a slight modification so it does a deep
clone/copy
var aCopy = jQuery.extend(true, {}, $('#something option:first').data
('value'));
dave.methvin wrote:
>
>
>> Is there a way to get jus
I am storing js objects using jQuery.data
eg.
var newDeployment = {
server: server,
application: application,
references: references
};
$('select#something option:first').data('value', newDeployment);
The problem is that I then
5 matches
Mail list logo