You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to see the ability to pull in element rather than everything specified within ajaxContentUrl. I originally thought that "contentElementId" would provide this functionality but I was mistaken.
I would like to see the ability to pull in element rather than everything specified within ajaxContentUrl. I originally thought that "contentElementId" would provide this functionality but I was mistaken.
Example:
JS -
jQuery('#Tip2').tipso({
background: 'tomato',
ajaxContentUrl : '/ajax.php',
content: '#2'
});
Ajaxpage (ajax.php)
Rendered
(Desired retreved HTML)
content from in div 2
(Actual retreved HTML)
content from in div 1
content from in div 2
What can be done so the script just pulls in content from just the #2 element on ajax.php
The text was updated successfully, but these errors were encountered: