Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UI: prototype -> jquery - element property manipulation #874

Closed
bmclaughlin opened this issue Oct 16, 2014 · 1 comment · Fixed by #1314
Closed

UI: prototype -> jquery - element property manipulation #874

bmclaughlin opened this issue Oct 16, 2014 · 1 comment · Fixed by #1314
Assignees

Comments

@bmclaughlin
Copy link
Contributor

Update prototype function calls to .src, .title and .alt to jQuery by replacing with the appropriate calls to .prop() as well as updating $ references to $j. PRs #220 and #823 can be seen as a reference. Parent issue for this issue is #214.

$('foo') should be replaced by the following in jQuery:
$j('#foo') in the case of an id
$j('.foo')[0] in the case of a class
$$('#foo') is Prototype's CSS selector and should be changed to $j('#foo') in jQuery.

jQuery .prop() documentation

@skateman
Copy link
Member

@miq-bot assign @skateman

@Fryguy Fryguy added this to the Sprint 18 Ending Jan 26, 2015 milestone Feb 18, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants