Plugins

User login
Can't find a Plugin?

Can't find a Plugin you are looking for? Check out the jQuery Wiki page.

Are you a plugin developer? Please move your plugin over to this site.

Website Bug or Feature Request?

Found a bug on the new jQuery Plugin website? Have a feature request?

Submit it to the jQuery Plugin website issue queue to ensure it is noticed!

Documentation Incorrect


Project:ContextMenu
Version:0.2
Component:Documentation
Category:bug report
Priority:minor
Assigned:Unassigned
Status:active
Description

Hi, this is more of a typo on the documentation site.

When applying styles, I have found that in using both FF 3 and IE 7 that quotes are required around style names. You example is:

itemStyle: {
fontFamily : 'verdana',
backgroundColor : '#666',
color: 'white',
border: 'none',
padding: '1px'
}

but in order to work, the snippet should read:

itemStyle: {
'fontFamily' : 'verdana',
'backgroundColor' : '#666',
'color': 'white',
'border': 'none',
'padding': '1px'
}

with the difference being the css styles are now surrounded by single quotes.