On Feb 8, 12:39 am, Daniel Friesen <[email protected]> wrote: > Well, for a plugin I honestly don't like the idea of being forced to use > something like $('#foo').borderRadius(5); when really you're modifying a > css property which would correctly be set with > $('#foo').css({borderRadius: 5});
Can't you accomplish this by just proxying jQuery.attr so when you try to set the border-radius it sets all variations of border-radius? You shouldn't even need to modify the get functionality. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery Development" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jquery-dev?hl=en -~----------~----~----~----~------~----~------~--~---
